Skip to content

Commit

Permalink
Package requirements.txt and update the dependencies list (#261)
Browse files Browse the repository at this point in the history
Remove scipy as dependency: it's not being directly used. Add scikit-learn
as a dependency because it's being used. Include requirements.txt on
manifest.in, exclude some files like license_notice.py and .flake8.
  • Loading branch information
santisoler authored Oct 20, 2021
1 parent 1b75690 commit 6cd8cf6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ prune .github
prune data
prune doc
prune paper
prune tutorials
exclude .*.yml
exclude .*rc
exclude requirements*.txt
exclude .flake8
exclude license_notice.py
exclude Makefile
exclude .gitignore
exclude .gitattributes
Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Dependencies
------------

* `numpy <http://www.numpy.org/>`__
* `scipy <https://docs.scipy.org/doc/scipy/reference/>`__
* `pandas <http://pandas.pydata.org/>`__
* `numba <https://numba.pydata.org/>`__
* `xarray <https://xarray.pydata.org/>`__
* `scikit-learn <https://scikit-learn.org>`__
* `pooch <http://www.fatiando.org/pooch/>`__
* `verde <http://www.fatiando.org/verde/>`__

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ dependencies:
- pip
- setuptools_scm
- numpy
- scipy
- pandas
- numba
- scikit-learn
- pooch>=0.7.0
- verde>=1.5.0
- xarray
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
numpy
scipy
pandas
scikit-learn
numba
pooch>=0.7.0
xarray
Expand Down

0 comments on commit 6cd8cf6

Please sign in to comment.