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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Create test env
shell: bash -l {0}
run: |
conda create -n test_env python=3.10 libgdal=3.5.2 -c conda-forge -c defaults -y
conda create -n test_env python=3.12 libgdal=3.5.2 -c conda-forge -c defaults -y
conda activate test_env
PIP_NO_BINARY=rasterio pip install .
pip install pylint mccabe
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Create a conda environment by typing the following:

conda env create -n georastertools
conda activate
conda install python=3.10 libgdal=3.5.2
conda install python=3.12 libgdal=3.5.2
pip install georastertools --no-binary rasterio

For more details, including installation as a Docker or Singularity image, please refer to the documentation. : docs/install.rst
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Secondly, run commands:

.. code-block:: console

$ conda install python=3.10 libgdal=3.5.2
$ conda install python=3.12 libgdal=3.5.2
$ pip install georastertools --no-binary rasterio

``georastertools`` will be installed in the conda environment. Then, the CLI ``georastertools`` can be used and the API :obj:`eolab.georastertools`
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
'kiwisolver==1.4.5',
'matplotlib==3.7.3',
'packaging==24.1',
'fiona==1.8.21',
'fiona==1.9.6',
'sphinx_rtd_theme==3.0.1',
'pip==24.2',
'sphinx==7.1.2',
'scipy==1.8',
'scipy==1.16',
'pyscaffold',
'gdal==3.5.0',
'tqdm==4.66'
Expand Down
Loading