|
8 | 8 | "torch>=1.3",
|
9 | 9 | "numpy",
|
10 | 10 | "scipy",
|
11 |
| - "lie_learn; python_version < "3.11"", |
| 11 | + "lie_learn", |
12 | 12 | "joblib",
|
13 | 13 | "pymanopt",
|
14 | 14 | "autograd",
|
|
17 | 17 |
|
18 | 18 |
|
19 | 19 | setup_requires = [""]
|
20 |
| -tests_require = ["scikit-learn", "scikit-image", "matplotlib" ] |
| 20 | +tests_require = ["scikit-learn", "scikit-image", "matplotlib"] |
21 | 21 |
|
22 | 22 | with open("README.md", "r", encoding="utf-8") as f:
|
23 | 23 | long_description = f.read()
|
|
38 | 38 | long_description=long_description,
|
39 | 39 | long_description_content_type="text/markdown",
|
40 | 40 | packages=find_packages(exclude=["test", "test.*"]),
|
41 |
| - python_requires=">=3.7", |
| 41 | + python_requires=">=3.7, <3.11", |
42 | 42 | keywords=[
|
43 | 43 | "pytorch",
|
44 | 44 | "cnn",
|
|
50 | 50 | "Programming Language :: Python :: 3",
|
51 | 51 | "Programming Language :: Python :: 3.7",
|
52 | 52 | "Programming Language :: Python :: 3.8",
|
53 |
| - "Programming Language :: Python :: 3.9", |
| 53 | + "Programming Language :: Python :: 3.9", |
54 | 54 | "Programming Language :: Python :: 3.10",
|
55 |
| - ], |
| 55 | + ], |
56 | 56 | install_requires=install_requires,
|
57 | 57 | setup_requires=setup_requires,
|
58 | 58 | tests_require=tests_require,
|
|
0 commit comments