From 8faf3d3f549022178f04b674a37586a2fd452544 Mon Sep 17 00:00:00 2001 From: Martin Raspaud Date: Tue, 26 Nov 2024 12:25:55 +0100 Subject: [PATCH] Upgrade ci to 3.13 --- .github/workflows/ci.yaml | 4 ++-- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 33dad2e5..12edca29 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,10 +15,10 @@ jobs: fail-fast: true matrix: os: ["windows-latest", "ubuntu-latest", "macos-latest"] - python-version: ["3.9", "3.11", "3.12"] + python-version: ["3.11", "3.12", "3.13"] experimental: [false] include: - - python-version: "3.12" + - python-version: "3.13" os: "ubuntu-latest" experimental: true diff --git a/pyproject.toml b/pyproject.toml index 242b2a8b..f955160b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ convention = "google" max-complexity = 10 [tool.mypy] -python_version = "3.9" +python_version = "3.12" # See https://github.com/python/mypy/issues/12286 for automatic multi-platform support platform = "linux" # platform = win32 diff --git a/setup.py b/setup.py index 8c1d27a0..3d70e8d0 100644 --- a/setup.py +++ b/setup.py @@ -102,7 +102,7 @@ packages=find_packages(), package_data={'pyresample.test': ['test_files/*']}, include_package_data=True, - python_requires='>=3.9', + python_requires='>=3.10', setup_requires=['setuptools>=3.2'], install_requires=requirements, extras_require=extras_require,