Skip to content

Commit

Permalink
Merge pull request pysb#581 from jmuhlich/dependency-pins
Browse files Browse the repository at this point in the history
Dependency pins for sympy and sphinx
  • Loading branch information
jmuhlich authored Jul 18, 2023
2 parents 8048658 + 92e1f46 commit de931a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/pysb-conda-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- alubbock::kappa
- numpy
- scipy
- sympy
- sympy<1.12
- cython
- matplotlib
- networkx
Expand Down
2 changes: 1 addition & 1 deletion doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Requirements just for building the docs (used by readthedocs, but also
# helpful for building docs locally).
sphinx>=1.4
sphinx>=6,<7
numpydoc>=0.6
mock>=1.0
setuptools>=20.0
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def main():
scripts=['scripts/pysb_export'],
# We should really specify some minimum versions here.
python_requires='>=3.6',
install_requires=['numpy', 'scipy>=1.1', 'sympy>=1.6', 'networkx',
'futures; python_version == "2.7"'],
install_requires=['numpy', 'scipy>=1.1', 'sympy>=1.6,<1.12',
'networkx'],
setup_requires=['nose'],
tests_require=['coverage', 'pygraphviz', 'matplotlib', 'pexpect',
'pandas', 'h5py', 'mock', 'cython',
Expand Down

0 comments on commit de931a9

Please sign in to comment.