Skip to content

Commit ff21348

Browse files
committed
pyproject.toml: Install statsmodels from git on Python 3.11
Statsmodels 0.13.2 doesn't support Python 3.11, so statsmodels is installed from their git master branch, which does support it. This commit can be reversed as soon as a statsmodels version is released which support Python 3.11.
1 parent 3cc3c86 commit ff21348

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
@@ -23,7 +23,8 @@ dependencies = [
2323
"salib",
2424
"platypus-opt",
2525
"matplotlib",
26-
"statsmodels",
26+
"statsmodels; python_version < '3.11'",
27+
"statsmodels @ git+https://github.com/statsmodels/statsmodels.git ; python_version >= '3.11'",
2728
"seaborn",
2829
"tqdm",
2930
]

0 commit comments

Comments
 (0)