We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f897c17 commit ed86e63Copy full SHA for ed86e63
requirements.txt
@@ -1,8 +1,9 @@
1
attrs>=19.2.0
2
-compas==1.16.0
3
-networkx>=2.5
4
-numpy
5
-progressbar2>=3.53
6
-pyclipper>=1.2.0
7
-rdp>=0.8
8
-libigl>=2.4.1
+compas>=1.16.0,<2.0.0
+networkx>=2.5,<3.2
+numpy<=1.23.2
+progressbar2>=3.53,<4.4
+pyclipper>=1.2.0,<1.3.0
+rdp==0.8
+libigl>=2.4.1,<2.5.0
9
+p
setup.py
@@ -44,11 +44,6 @@ def read(*names, **kwargs):
44
"Operating System :: Unix",
45
"Operating System :: POSIX",
46
"Operating System :: Microsoft :: Windows",
47
- "Programming Language :: Python",
48
- "Programming Language :: Python :: 2.7",
49
- "Programming Language :: Python :: 3",
50
- "Programming Language :: Python :: 3.6",
51
- "Programming Language :: Python :: 3.7",
52
"Programming Language :: Python :: 3.8",
53
"Programming Language :: Python :: 3.9",
54
"Programming Language :: Python :: Implementation :: CPython",
@@ -63,7 +58,7 @@ def read(*names, **kwargs):
63
58
include_package_data=True,
64
59
zip_safe=False,
65
60
install_requires=[requirements],
66
- python_requires=">=2.7",
61
+ python_requires=">=3.8",
67
62
extras_require=optional_requirements,
68
entry_points={
69
"console_scripts": [],
0 commit comments