diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eaba74e3..70e9ffe4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11"] + python-version: ["3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/conda_env/gdal-dev.yml b/conda_env/gdal-dev.yml index 2bf9792a..7274a36a 100644 --- a/conda_env/gdal-dev.yml +++ b/conda_env/gdal-dev.yml @@ -2,8 +2,8 @@ name: gdal-dev channels: - conda-forge dependencies: - - python=3.11 - - gdal=3.6.* + - python=3.10 + - gdal=3.4.* - requests=2.28.* - pylint=2.15.* - geojson=2.5.* diff --git a/conda_env/gdal-user.yml b/conda_env/gdal-user.yml index 7e2db9c4..2c1d61be 100644 --- a/conda_env/gdal-user.yml +++ b/conda_env/gdal-user.yml @@ -2,9 +2,9 @@ name: gdal-user channels: - conda-forge dependencies: - - python=3.11 + - python=3.10 - geojson=2.5.* - - gdal=3.6.* + - gdal=3.4.* - pip - pip: - wahoomc==3.2.0 diff --git a/docs/QUICKSTART_ANACONDA.md b/docs/QUICKSTART_ANACONDA.md index e8444be3..45e1a57d 100644 --- a/docs/QUICKSTART_ANACONDA.md +++ b/docs/QUICKSTART_ANACONDA.md @@ -76,7 +76,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.11 geojson=2.5 gdal=3.6 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 74b3ef3f..17fcf4ce 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,7 @@ classifiers = [options] packages = wahoomc, wahoomc.init -python_requires = >=3.11 +python_requires = >=3.10 install_requires = requests==2.28.* shapely==1.8.*