From 04a35f081adf480c1e55b48abe22d3412d04f6cc Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Tue, 30 Apr 2024 08:04:03 +0100 Subject: [PATCH] backward compatibility --- .github/workflows/python-publish.yml | 2 +- ecmwf/opendata/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 266bb3a..d4091bf 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -29,7 +29,7 @@ jobs: fail-fast: false matrix: platform: ["ubuntu-latest", "macos-latest", "windows-latest"] - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] name: Python ${{ matrix.python-version }} on ${{ matrix.platform }} runs-on: ${{ matrix.platform }} diff --git a/ecmwf/opendata/__init__.py b/ecmwf/opendata/__init__.py index 136649a..b82cb46 100644 --- a/ecmwf/opendata/__init__.py +++ b/ecmwf/opendata/__init__.py @@ -10,6 +10,6 @@ from .client import Client -__version__ = "0.3.4" +__version__ = "0.3.5" __all__ = ["Client"]