-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #443 from tcmitchell/442-python-versions
Update compatible python versions
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
setup(name='sbol3', | ||
version='1.2', | ||
description='Python implementation of SBOL 3 standard', | ||
python_requires='>=3.7', | ||
python_requires='>=3.8', | ||
url='https://github.com/SynBioDex/pySBOL3', | ||
author='Tom Mitchell', | ||
author_email='[email protected]', | ||
|
@@ -25,7 +25,6 @@ | |
# Specify the Python versions you support here. In particular, ensure | ||
# that you indicate whether you support Python 2, Python 3 or both. | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
|
@@ -40,9 +39,9 @@ | |
# of rdflib 6.x | ||
'rdflib>=6.1.1,==6.*', | ||
'python-dateutil~=2.8.2', | ||
'pyshacl~=0.21', | ||
'pyshacl~=0.23', | ||
], | ||
test_suite='test', | ||
tests_require=[ | ||
'pycodestyle~=2.10' | ||
'pycodestyle~=2.11' | ||
]) |