-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
6 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 |
---|---|---|
|
@@ -10,8 +10,8 @@ | |
from setuptools.command.install_lib import install_lib as install_lib_orig | ||
from distutils.version import LooseVersion | ||
|
||
if sys.version_info < (3, 10): | ||
sys.exit('Python < 3.10 is not supported') | ||
if sys.version_info < (3, 11): | ||
sys.exit('Python < 3.11 is not supported') | ||
|
||
exclude = ['*-obj*', 'tools'] | ||
|
||
|
@@ -94,18 +94,19 @@ def build_extension(self, ext): | |
author='Erik van den Brink', | ||
author_email='[email protected]', | ||
name='neo3crypto', | ||
python_requires='>=3.10.0,<=3.12', | ||
python_requires='>=3.11.0,<=3.12', | ||
description="Native crypto functions for the NEO 3 Blockchain", | ||
long_description=readme, | ||
long_description_content_type="text/x-rst", | ||
version='0.4.2', | ||
version='0.4.3', | ||
license='MIT', | ||
url='https://github.com/CityOfZion/neo3crypto', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
"Programming Language :: C++" | ||
], | ||
ext_modules=[CMakeExtension('neo3crypto')], | ||
|