Skip to content

Commit 6bb1807

Browse files
authored
Merge pull request #57 from lmnt-com/master
Limit maximum Cython version to avoid build break
2 parents f166130 + e040337 commit 6bb1807

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"setuptools<v60.0",
4-
"cython>=0.28.0",
4+
"cython>=0.28.0,<3.0.0",
55
"oldest-supported-numpy",
66
]
77
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def run(self):
277277
cmdclass=cmdclass,
278278
install_requires=[
279279
"numpy >= 1.20.0",
280-
"cython >= " + min_cython_ver,
280+
"cython >= " + min_cython_ver + ",<3.0.0",
281281
"six",
282282
"tqdm",
283283
],

0 commit comments

Comments
 (0)