Skip to content

Commit

Permalink
Excluding casadi on python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiirola committed Nov 1, 2022
1 parent 879bdaf commit b9a52c0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,10 @@ def _print_deps(self, deplist):
# The following optional dependencies are difficult to
# install on PyPy (binary wheels are not available), so we
# will only "require" them on other (CPython) platforms:
'casadi; implementation_name!="pypy"', # dae
#
# DAE can use casadi; as of 1 Nov 22, casadi has not been
# released for Python 3.11
'casadi; implementation_name!="pypy" and python_version<"3.11"',
'numdifftools; implementation_name!="pypy"', # pynumero
'pandas; implementation_name!="pypy"',
'seaborn; implementation_name!="pypy"', # parmest.graphics
Expand Down

0 comments on commit b9a52c0

Please sign in to comment.