Skip to content

Commit

Permalink
fix: add <3.12 constraint to python version
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisScoccola committed Oct 17, 2023
1 parent 9ced70d commit e5f2779
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ For Jupyter notebooks with more examples, please check the [documentation](https

## Installing

Make sure you are using Python 3.8 or newer.
Make sure your Python version is >=3.8 and <3.12.
DREiMac depends on the following python packages, which will be installed automatically when you install with pip:
`matplotlib`,
`numba`,
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ You can check the :ref:`theory section <theory>` for details and or the examples
Installing
----------

Make sure you are using Python 3.8 or newer.
Make sure your Python version is >=3.8 and <3.12.
DREiMac depends on the following python packages, which will be installed automatically when you install with pip:
`matplotlib`,
`numba`,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def requirements():
"testing": ["pytest"],
"examples": [],
},
python_requires=">=3.8",
python_requires=">=3.8,<3.12",
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
Expand Down

0 comments on commit e5f2779

Please sign in to comment.