Skip to content

Commit 23a591e

Browse files
committed
limit python versions
1 parent b16231a commit 23a591e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ def build_extension(self, ext):
113113
"Operating System :: POSIX",
114114
"Operating System :: Microsoft :: Windows",
115115
"Programming Language :: Python",
116-
"Programming Language :: Python :: 3.6",
117-
"Programming Language :: Python :: 3.7",
118116
"Programming Language :: Python :: 3.8",
117+
"Programming Language :: Python :: 3.9",
118+
"Programming Language :: Python :: 3.10",
119119
"Programming Language :: Python :: Implementation :: CPython",
120120
],
121121
keywords=[],
@@ -129,7 +129,7 @@ def build_extension(self, ext):
129129
include_package_data=True,
130130
zip_safe=False,
131131
install_requires=requirements,
132-
python_requires=">=3.6",
132+
python_requires=">=3.7,<3.11",
133133
extras_require=optional_requirements,
134134
ext_modules=[CMakeExtension("compas_libigl")],
135135
cmdclass=dict(build_ext=CMakeBuild),

0 commit comments

Comments
 (0)