From 331ce469a83a8d6366f9784ec573414d276af721 Mon Sep 17 00:00:00 2001 From: "Konstantin (Tino) Sering" Date: Thu, 25 Apr 2024 11:31:46 +0200 Subject: [PATCH] another test of newer version to fix install on python 3.12 --- .github/workflows/python-test.yml | 2 +- pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 59d5c81..6d4c511 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -15,7 +15,7 @@ jobs: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] python-version: ['3.8', '3.12'] - poetry-version: ["1.7.1"] + poetry-version: ["1.8.2"] fail-fast: false runs-on: ${{ matrix.os }} steps: diff --git a/pyproject.toml b/pyproject.toml index b686b38..eaa8f68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,9 +28,9 @@ classifiers = ['Development Status :: 5 - Production/Stable', 'Topic :: Scientific/Engineering :: Information Analysis',] [tool.poetry.dependencies] -python = ">=3.8,<3.13" # Compatible python versions must be declared here -numpy = ">=1.23.1" -scipy = ">=1.9.0" +python = ">=3.9,<3.13" # Compatible python versions must be declared here +numpy = ">=1.24.1" +scipy = ">=1.13.0" pandas = ">=1.4.3" xarray = ">=2022.6.0" netCDF4 = ">=1.6.0"