Skip to content

Commit 030bc97

Browse files
committed
Added support for Python 3.10.
1 parent 194be5e commit 030bc97

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ at `New York University Abu Dhabi <http://nyuad.nyu.edu/>`_.
4040
Installation
4141
------------
4242

43-
You will need Python 3.7 and above (64-bit) as well as
43+
You will need Python 3.7 - 3.10 (64-bit) as well as
4444
`the Rust compiler <https://www.rust-lang.org/learn/get-started>`_ installed.
4545

4646
Linux/macOS

docs/source/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Getting Started
44
Installation
55
------------
66

7-
You will need Python 3.7 and above (64-bit) as well as
7+
You will need Python 3.7 - 3.10 (64-bit) as well as
88
`the Rust compiler <https://www.rust-lang.org/learn/get-started>`_ installed.
99

1010
Linux/macOS

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
'Programming Language :: Python :: 3.7',
5151
'Programming Language :: Python :: 3.8',
5252
'Programming Language :: Python :: 3.9',
53+
'Programming Language :: Python :: 3.10',
5354
'Topic :: Scientific/Engineering',
5455
'Topic :: Scientific/Engineering :: Artificial Intelligence',
5556
'Topic :: Scientific/Engineering :: Information Analysis',
@@ -139,5 +140,5 @@
139140
long_description=LONG_DESCRIPTION,
140141
classifiers=CLASSIFIERS,
141142
install_requires=INSTALL_REQUIRES,
142-
python_requires='>=3.7.0, <3.10.*'
143+
python_requires='>=3.7.0, <3.11'
143144
)

0 commit comments

Comments
 (0)