Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion docs/source/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Install **earthkit-data** with python3 (>= 3.10) and ``pip`` as follows:

.. code-block:: bash

python3 -m pip install earthkit-data==1.0.0rc0
python3 -m pip install earthkit-data>=1.0.0rc0

Please note that this is a **minimal** installation supporting only GRIB and NetCDF data and cannot access remote services other than URLs. If you want to use more data types or remote services you need to install the optional Python packages. For more details see :ref:`install`.

Expand Down
10 changes: 5 additions & 5 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Install **earthkit-data** with python3 (>= 3.10 ) and ``pip`` as follows:

.. code-block:: bash

python3 -m pip install earthkit-data==1.0.0rc0
python3 -m pip install earthkit-data>=1.0.0rc0

The package installed like this is **minimal** supporting only GRIB and NetCDF data and cannot access remote services other than URLs. If you want to use more data types or remote services you need to install the optional Python packages.

Expand All @@ -24,13 +24,13 @@ You can install **earthkit-data** with all the optional packages (with the excep

.. code-block:: bash

python3 -m pip install earthkit-data[all]==1.0.0rc0
python3 -m pip install earthkit-data[all]>=1.0.0rc0

Please note in **zsh** you need to use quotes around the square brackets:

.. code-block:: bash

python3 -m pip install "earthkit-data[all]==1.0.0rc0"
python3 -m pip install "earthkit-data[all]>=1.0.0rc0"


Installing individual optional packages
Expand Down Expand Up @@ -58,13 +58,13 @@ E.g. to add :ref:`data-sources-mars` support you can use:

.. code-block:: bash

python3 -m pip install earthkit-data[mars]==1.0.0rc0
python3 -m pip install earthkit-data[mars]>=1.0.0rc0

List of optional dependencies can also be specified :

.. code-block:: bash

python3 -m pip install earthkit-data[cds,mars]==1.0.0rc0
python3 -m pip install earthkit-data[cds,mars]>=1.0.0rc0



Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies:
- ecmwf-opendata>=0.1.2
- polytope-client>=0.7.4
- covjsonkit>=0.2.2
- earthkit-utils==1.0.0rc0
- earthkit-utils>=1.0.0rc0
- tqdm>=4.63.0
- lru-dict
- markdown
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies = [
"cfgrib>=0.9.10.1",
"dask",
"deprecation",
"earthkit-utils==1.0.0rc0",
"earthkit-utils>=1.0.0rc0",
"eccodeslib==2.46.2.17",
"eckit==2.0.6.17",
"entrypoints",
Expand Down
3 changes: 1 addition & 2 deletions tests/environment-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ dependencies:
- polytope-client>=0.7.4
- git+https://github.com/ecmwf/earthkit-data-demo-source
- covjsonkit>=0.2.2
- earthkit-geo>=0.2.0,<0.99
- earthkit-utils>=0.2.0,<0.99
- earthkit-utils>=1.0.0rc0
- tqdm>=4.63.0
- lru-dict
- markdown
Expand Down
Loading