From 30312895111a9f6e8e16e81b162fa360ecdcb4d2 Mon Sep 17 00:00:00 2001 From: Benjamin Kreuscher Date: Wed, 2 Nov 2022 21:47:33 +0100 Subject: [PATCH] replace 3.7 by 3.10 in all relevant files --- conda_env/gdal-dev.yml | 4 ++-- conda_env/gdal-user.yml | 2 +- docs/QUICKSTART_ANACONDA.md | 2 +- setup.cfg | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conda_env/gdal-dev.yml b/conda_env/gdal-dev.yml index 94c575cf..f9bacf13 100644 --- a/conda_env/gdal-dev.yml +++ b/conda_env/gdal-dev.yml @@ -1,8 +1,8 @@ -name: gdal-dev +name: gdal-dev-3.10 channels: - conda-forge dependencies: - - python=3.7 + - python=3.10 - gdal=3.4.* - requests=2.28.* - pylint=2.15.* diff --git a/conda_env/gdal-user.yml b/conda_env/gdal-user.yml index 80eb5cb4..3ddc23f7 100644 --- a/conda_env/gdal-user.yml +++ b/conda_env/gdal-user.yml @@ -2,7 +2,7 @@ name: gdal-user channels: - conda-forge dependencies: - - python=3.7 + - python=3.10 - geojson=2.5.* - gdal=3.4.* - pip diff --git a/docs/QUICKSTART_ANACONDA.md b/docs/QUICKSTART_ANACONDA.md index d49a082a..6fb3d1bf 100644 --- a/docs/QUICKSTART_ANACONDA.md +++ b/docs/QUICKSTART_ANACONDA.md @@ -65,7 +65,7 @@ brew install osmosis 1. Open terminal (macOS/Linux) or **Anaconda Prompt** (Windows, via Startmenu) 2. Create a new Anaconda environment with needed packages ``` -conda create -n gdal-user python=3.7 geojson=2.5 gdal=3.4 pip --channel conda-forge --override-channels +conda create -n gdal-user python=3.10 geojson=2.5 gdal=3.4 pip --channel conda-forge --override-channels ``` 3. activate Anaconda environment with the command printed out (this needs to be done each time you want to use wahooMapsCreator maps) ``` diff --git a/setup.cfg b/setup.cfg index 12d30844..f6ce792b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,7 @@ classifiers = [options] packages = wahoomc, wahoomc.init -python_requires = >=3.7 +python_requires = >=3.10 install_requires = requests==2.28.* shapely==1.8.*