Skip to content

Commit 210e612

Browse files
committed
Remove Python=3.8 because HDF5/NETCDF does not work anymore on windows docker image
1 parent 8cc87d2 commit 210e612

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/main.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v2
2828

29-
- name: Set up Python 3.10
29+
- name: Set up Python 3.11
3030
uses: actions/setup-python@v2
3131
with:
32-
python-version: '3.10'
32+
python-version: '3.11'
3333

3434
- name: Install dependencies
3535
run: |
@@ -43,8 +43,7 @@ jobs:
4343
fail-fast: false
4444
matrix:
4545
os: [ubuntu-latest, windows-latest, macos-latest]
46-
# python-version: [3.6, 3.7, 3.8, 3.9]
47-
python-version: ['3.8', '3.9', '3.10', '3.11']
46+
python-version: ['3.9', '3.10', '3.11', '3.12']
4847

4948
steps:
5049
- uses: actions/checkout@v2
@@ -72,7 +71,7 @@ jobs:
7271
python -m build
7372
7473
- uses: actions/upload-artifact@v2
75-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
74+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
7675
with:
7776
path: dist
7877

setup.cfg

+2-3
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ classifiers =
2727
Programming Language :: Python
2828
Programming Language :: Python :: 3
2929
Programming Language :: Python :: 3 :: Only
30-
Programming Language :: Python :: 3.7
31-
Programming Language :: Python :: 3.8
3230
Programming Language :: Python :: 3.9
3331
Programming Language :: Python :: 3.10
3432
Programming Language :: Python :: 3.11
33+
Programming Language :: Python :: 3.12
3534
Topic :: Scientific/Engineering
3635
Topic :: Scientific/Engineering :: Atmospheric Science
3736
Topic :: Scientific/Engineering :: Hydrology
@@ -54,7 +53,7 @@ install_requires =
5453
scipy
5554
pandas
5655
pyjams
57-
python_requires = >=3.7
56+
python_requires = >=3.9
5857
zip_safe = False
5958

6059
[options.packages.find]

0 commit comments

Comments
 (0)