Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin 'sympy', 'coverage' and 'antlr4-python3-runtime' dependencies #380

Merged
merged 2 commits into from
Feb 15, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Pin 'sympy' and 'coverage' dependencies
Temporary workarounds for #377 and #378.
  • Loading branch information
willfurnass committed Feb 10, 2020
commit dd99de88e98631df6fcf1c0c6bef8998b2bea901
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
'pydstool>=0.90.3', # min version that allows scipy >= 1.0.0 to be used
'pyzmq<17', # needed if using tornado < 5
'scipy',
'sympy>=1.4',
'sympy>=1.4,<1.5', # pinned to <1.5 due to Issue #377
'tornado<5' # needed to avoid errors with older ipykernel
],
extras_require={
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ extras =
docs
passenv = DISPLAY BROWSER TOXENV CI TRAVIS TRAVIS_*
install_command = pip install {opts} {packages}
deps = codecov>=1.4.0
deps =
codecov>=1.4.0
coverage<5
whitelist_externals =
bash
test
Expand Down