Skip to content

Commit

Permalink
chore: update minimum Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanomunarini committed Apr 24, 2023
1 parent ec1ad26 commit c2ab40f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Changelog
=========


v0.2.27
=======

- Remove support for Python < 3.10

v0.2.26
=======

Expand Down
2 changes: 1 addition & 1 deletion relaton/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.26'
__version__ = '0.2.27'
11 changes: 3 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ def empty_or_comment(x):
return len(x) == 0 or x.strip().startswith("#")


if sys.version_info < (3, 7):
if sys.version_info < (3, 10):
print(
'relaton requires Python 3 version >= 3.7',
'relaton requires Python 3 version >= 3.10',
file=sys.stderr)
sys.exit(1)

Expand All @@ -25,8 +25,6 @@ def empty_or_comment(x):
with open('requirements_dev.txt') as reqs:
dev_requirements = filter(empty_or_comment, reqs.read().splitlines())



desc = (
"Library for working with Relaton bibliographic data models in Python. "
"Provides Pydantic models and dataclasses, "
Expand Down Expand Up @@ -57,10 +55,7 @@ def empty_or_comment(x):
'dataclasses',
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
Expand Down

0 comments on commit c2ab40f

Please sign in to comment.