Skip to content

Commit bef2552

Browse files
committed
fix tests
1 parent 40beeab commit bef2552

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
platform: ["ubuntu-latest", "macos-latest", "windows-latest"]
12-
python-version: ["3.7", "3.8", "3.9", "3.10"]
11+
platform: ["ubuntu-latest", "macos-latest"]
12+
python-version: ["3.9", "3.10", "3.11" ]
1313

1414
name: Python ${{ matrix.python-version }} on ${{ matrix.platform }}
1515
runs-on: ${{ matrix.platform }}
@@ -29,4 +29,4 @@ jobs:
2929
pip freeze
3030
3131
- name: Tests
32-
run: pytest tests/test_examples.py
32+
run: pytest tests/test_examples.py

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
platform: ["ubuntu-latest", "macos-latest", "windows-latest"]
32-
python-version: ["3.8", "3.9", "3.10", "3.11"]
31+
platform: ["ubuntu-latest", "macos-latest"]
32+
python-version: ["3.9", "3.10", "3.11" ]
3333

3434
name: Python ${{ matrix.python-version }} on ${{ matrix.platform }}
3535
runs-on: ${{ matrix.platform }}

ecmwf/opendata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
from .client import Client
1212

13-
__version__ = "0.3.9"
13+
__version__ = "0.3.10"
1414

1515
__all__ = ["Client"]

0 commit comments

Comments
 (0)