Skip to content

Commit

Permalink
fix repo info
Browse files Browse the repository at this point in the history
  • Loading branch information
mjo22 committed Aug 6, 2021
1 parent 11fc162 commit b860e59
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,4 @@ pip install spatialstats

#### Additional Dependencies ####

<tt>spatialstats</tt> does not load any of its routines until the time of import (lazy loading), so the only installation requirement is [numpy](https://github.com/numpy/numpy). This is to keep the flexibility of <tt>spatialstats</tt> as a package of disconnected routines. Users may need to add additional dependencies after installation, such as [scipy](https://github.com/scipy/scipy), [numba](https://github.com/numba/numba)>=0.50, [cupy](https://github.com/cupy/cupy)>=8.0, [pyfftw](https://github.com/pyFFTW/pyFFTW), and
[dask](https://github.com/dask/dask)>=2021.7.0.
<tt>spatialstats</tt> does not load any of its routines until the time of import (lazy loading), so the only installation requirement is [numpy](https://github.com/numpy/numpy). This is to keep the flexibility of <tt>spatialstats</tt> as a package of disconnected routines. Users may need to add additional dependencies after installation, such as [scipy](https://github.com/scipy/scipy), [numba](https://github.com/numba/numba)>=0.50, [cupy](https://github.com/cupy/cupy)>=8.0, and [pyfftw](https://github.com/pyFFTW/pyFFTW).
1 change: 0 additions & 1 deletion docs/logistics/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ spatialstats does not load any of its routines until the time of import (lazy lo
* `numba <https://github.com/numba/numba>`_>=0.50
* `cupy <https://github.com/cupy/cupy>`_>=8.0
* `pyfftw <https://github.com/pyFFTW/pyFFTW>`_
* `dask <https://github.com/dask/dask>`_>=2021.7.0

To install with dependencies, the user may run::

Expand Down
1 change: 0 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ numpy
scipy
numba>=0.50
cupy>=8.0
dask>=2021.7.0
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ install_requires =
packages = find:
[options.extras_require]
full = scipy; numba>=0.50; cupy>=8.0; pyfftw; dask>=2021.7.0;
cpu = scipy; numba>=0.50; dask>=2021.7.0; pyfftw;
full = scipy; numba>=0.50; cupy>=8.0; pyfftw;
cpu = scipy; numba>=0.50; pyfftw;
gpu = cupy>=8.0;

0 comments on commit b860e59

Please sign in to comment.