Skip to content

Commit

Permalink
pyproject.toml: Install statsmodels from git on Python 3.11
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
EwoutH committed Oct 28, 2022
1 parent 3cc3c86 commit ff21348
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ dependencies = [
"salib",
"platypus-opt",
"matplotlib",
"statsmodels",
"statsmodels; python_version < '3.11'",
"statsmodels @ git+https://github.com/statsmodels/statsmodels.git ; python_version >= '3.11'",
"seaborn",
"tqdm",
]
Expand Down

0 comments on commit ff21348

Please sign in to comment.