Skip to content

Commit 5b63d90

Browse files
committed
dropped compatibility with python3.12 as it conflicts with pandas1.5.2 (latest possible for hub)
1 parent a442334 commit 5b63d90

File tree

3 files changed

+29
-26
lines changed

3 files changed

+29
-26
lines changed

.github/workflows/CI_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.10', '3.11', '3.12']
17+
python-version: ['3.10', '3.11']
1818
steps:
1919
- uses: actions/checkout@v3
2020
- name: Set up python ${{ matrix.python-version }}

poetry.lock

Lines changed: 27 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Rolf Rüfenacht <rruefenacht@users.noreply.github.com>","Eric Sauvag
88
license = "BSD 3-Clause"
99

1010
[tool.poetry.dependencies]
11-
python = ">3.9 <=3.13"
11+
python = ">3.9 <=3.12"
1212
netCDF4 = "*"
1313
PyYAML = "*"
1414
numpy = "<2"
@@ -18,7 +18,6 @@ ephem = "*" # used for setting sun-in-beam flag in quality_flag
1818
colorlog = {version = "^6.6", optional = true}
1919
pandas = "*"
2020
setuptools = "^75.8.0"
21-
importlib-metadata = "<5"
2221

2322
[tool.poetry.dev-dependencies]
2423
matplotlib = "3.*"

0 commit comments

Comments
 (0)