Skip to content

Commit

Permalink
Add missing dependencies for all the tests to run.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoro committed May 9, 2023
1 parent 2aac9e4 commit 62785b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/source/dev_guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ automatically reflected in the python environment. We highly recommend making
a separate conda environment or virtualenv for development. For example, you
can do this using conda_::

conda create -n satpy-dev python=3.8
conda create -n satpy-dev python=3.11
conda activate satpy-dev

.. _conda: https://conda.io/
Expand Down Expand Up @@ -80,7 +80,7 @@ libraries. If you want to run all Satpy tests you will need to install
additional dependencies that aren't needed for regular Satpy usage. To install
them run::

pip install -e .[tests]
pip install -e ".[tests]"

Satpy tests can be executed by running::

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
test_requires = ['behave', 'h5py', 'netCDF4', 'pyhdf', 'imageio',
'rasterio', 'geoviews', 'trollimage', 'fsspec', 'bottleneck',
'rioxarray', 'pytest', 'pytest-lazy-fixture', 'defusedxml',
's3fs']
's3fs', 'python-eccodes', 'h5netcdf', 'xarray-datatree',
'skyfield', 'ephem', 'pint-xarray', 'astropy']

extras_require = {
# Readers:
Expand Down

0 comments on commit 62785b0

Please sign in to comment.