From 210e612c5cc56df72a15eb0400d296a03cf6aee1 Mon Sep 17 00:00:00 2001 From: Matthias Cuntz Date: Tue, 3 Sep 2024 23:54:11 +0200 Subject: [PATCH] Remove Python=3.8 because HDF5/NETCDF does not work anymore on windows docker image --- .github/workflows/main.yml | 9 ++++----- setup.cfg | 5 ++--- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1896c19..f473fd0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,10 +26,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.10 + - name: Set up Python 3.11 uses: actions/setup-python@v2 with: - python-version: '3.10' + python-version: '3.11' - name: Install dependencies run: | @@ -43,8 +43,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - # python-version: [3.6, 3.7, 3.8, 3.9] - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2 @@ -72,7 +71,7 @@ jobs: python -m build - uses: actions/upload-artifact@v2 - if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' + if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' with: path: dist diff --git a/setup.cfg b/setup.cfg index a765b39..939f56e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,11 +27,10 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Topic :: Scientific/Engineering Topic :: Scientific/Engineering :: Atmospheric Science Topic :: Scientific/Engineering :: Hydrology @@ -54,7 +53,7 @@ install_requires = scipy pandas pyjams -python_requires = >=3.7 +python_requires = >=3.9 zip_safe = False [options.packages.find]