Skip to content

Commit cc842f3

Browse files
committed
limit requirements based on PyLBFGS
1 parent b6e2f1e commit cc842f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ classifiers = [
1818
"Topic :: Scientific/Engineering :: Artificial Intelligence",
1919
"Topic :: Scientific/Engineering :: Visualization",
2020
]
21-
requires-python = ">=3.6"
21+
requires-python = ">=3.6,<3.11" # Python>=3.11 is not supported due to PyLBFGS not being updated to cython>=3.0
2222
dependencies = [
23+
"cython < 3.0", # PyLBFGS is not updated to support cython>=3.0
2324
"numpy >= 1.20",
2425
"scipy >= 1.6",
2526
"numba >= 0.53",

0 commit comments

Comments
 (0)