Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dependencies:
- pip
- setuptools
- build
- packaging
# testing
- parameterized
- testflo
Expand Down
2 changes: 1 addition & 1 deletion pyoptsparse/pySNOPT/pySNOPT.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from baseclasses.utils import CaseInsensitiveSet, writePickle
import numpy as np
from numpy import ndarray
from pkg_resources import parse_version
from packaging.version import parse as parse_version

# Local modules
from ..pyOpt_error import Error
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ def copy_shared_libraries():
platforms=["Linux"],
keywords="optimization",
install_requires=[
"packaging",
"sqlitedict>=1.6",
"numpy>=1.21,<2",
"scipy>=1.7",
Expand Down