Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python Major Versions that can be used #80

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ If you want to better understand the theory behind equivariant and steerable neu

## Dependencies

The library is based on Python3.7
The library is based on Python 3.7 und can be used with Python [3.7, 3.8, 3.9, 3.10].

```
torch>=1.3
Expand Down Expand Up @@ -260,6 +260,7 @@ or you can clone this repository and manually install it with
pip install git+https://github.com/QUVA-Lab/escnn
```

Installation and use was tested with Python versions [3.7, 3.8, 3.9, 3.10].

## Contributing

Expand Down
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


setup_requires = [""]
tests_require = ["scikit-learn", "scikit-image"]
tests_require = ["scikit-learn", "scikit-image", "matplotlib"]

with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
Expand All @@ -38,13 +38,21 @@
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["test", "test.*"]),
python_requires=">=3.7",
python_requires=">=3.7, <3.11",
keywords=[
"pytorch",
"cnn",
"convolutional-networks" "equivariant",
"isometries",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
Expand Down