From 9117c4561c677bc47aec791b887b472725c35661 Mon Sep 17 00:00:00 2001 From: oyvfoss <55143223+oyvfoss@users.noreply.github.com> Date: Mon, 5 Aug 2024 16:22:49 +0200 Subject: [PATCH] Restrictibg Python requirement to above 3.8 and below 3.12 (awaiting the cftime/cfunits stuff to be fixed --- .github/workflows/ci_test_kval.yml | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_test_kval.yml b/.github/workflows/ci_test_kval.yml index 6bac347..54f948b 100644 --- a/.github/workflows/ci_test_kval.yml +++ b/.github/workflows/ci_test_kval.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - python-version: [ "3.9", "3.10", "3.11", "3.12"] + python-version: [ "3.9", "3.10", "3.11",] steps: - name: Checkout repository diff --git a/pyproject.toml b/pyproject.toml index 3cd1b1b..9819436 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,8 +12,7 @@ maintainers = [ { name = "Norwegian Polar Institute, Oceanography section", email = "" }, ] -requires-python = ">=3.9" - +requires-python = ">=3.9, <3.12" dependencies = [ "xarray>=2023.10.1", "jupyter>=1.0.0",