Skip to content

Commit

Permalink
dependency cleanup
Browse files Browse the repository at this point in the history
- install matplotlib instead of matplotlib-base for Python 2.7 (also works in 3)
- used same version pins in setup.py and test_env.yaml
- removed numpy from testing dep in setup.py as it is a package dep
  • Loading branch information
orbeckst committed Sep 15, 2023
1 parent 2ad40f0 commit cee69a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions ci/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ channels:
dependencies:
- python
- six
- numpy
- scipy
- matplotlib-base
- pandas
- numpy>=1.0
- matplotlib
- pandas>=0.17
- numkit
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@
'numkit', # numerical helpers
'matplotlib',
],
tests_require=['pytest', 'numpy>=1.0', 'pandas>=0.17'],
tests_require=['pytest', 'pandas>=0.17'],
zip_safe=True,
)

0 comments on commit cee69a8

Please sign in to comment.