From 34df1cc537c0934fb203286e86de303dccdd2d40 Mon Sep 17 00:00:00 2001 From: "Konstantin (Tino) Sering" Date: Sun, 7 Dec 2025 07:23:47 +0100 Subject: [PATCH 1/4] removes upper boundary of python version in pyproject.toml; sets python to 3.14 in testing environment --- .github/workflows/python-test.yml | 4 ++-- pyproject.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index a963ce7..566dd3d 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -14,8 +14,8 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - python-version: ['3.9', '3.12'] - poetry-version: ["1.8"] + python-version: ['3.9', '3.14'] + poetry-version: ["2.2"] fail-fast: false runs-on: ${{ matrix.os }} steps: diff --git a/pyproject.toml b/pyproject.toml index eaa8f68..310de74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyndl" -version = "1.2.3" +version = "1.2.4" description = "Naive discriminative learning implements learning and classification models based on the Rescorla-Wagner equations." license = "MIT" @@ -28,7 +28,7 @@ classifiers = ['Development Status :: 5 - Production/Stable', 'Topic :: Scientific/Engineering :: Information Analysis',] [tool.poetry.dependencies] -python = ">=3.9,<3.13" # Compatible python versions must be declared here +python = "^3.9" # Compatible python versions must be declared here numpy = ">=1.24.1" scipy = ">=1.13.0" pandas = ">=1.4.3" @@ -38,7 +38,7 @@ Cython = ">=3.0.0" toml = ">=0.10.2" setuptools = ">=69.2.0" -[tool.poetry.dev-dependencies] +[tool.group.poetry.dev-dependencies] pytest = ">=7.0" pytest-cov = ">=2.4" pydocstyle = ">=6.1.1" From 4f6067329cf241243bd5a47b102acaf391fc464f Mon Sep 17 00:00:00 2001 From: "Konstantin (Tino) Sering" Date: Sun, 7 Dec 2025 08:19:05 +0100 Subject: [PATCH 2/4] fixes pyprojecttoml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 310de74..ccd00fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ Cython = ">=3.0.0" toml = ">=0.10.2" setuptools = ">=69.2.0" -[tool.group.poetry.dev-dependencies] +[tool.poetry.group.dev-dependencies] pytest = ">=7.0" pytest-cov = ">=2.4" pydocstyle = ">=6.1.1" From 2ea6d6942e7dedd2c368a885b89a80d4f675e202 Mon Sep 17 00:00:00 2001 From: "Konstantin (Tino) Sering" Date: Sun, 7 Dec 2025 09:44:03 +0100 Subject: [PATCH 3/4] another typo --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ccd00fe..20e02e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ Cython = ">=3.0.0" toml = ">=0.10.2" setuptools = ">=69.2.0" -[tool.poetry.group.dev-dependencies] +[tool.poetry.group.dev.dependencies] pytest = ">=7.0" pytest-cov = ">=2.4" pydocstyle = ">=6.1.1" From b926485466758d5c37fa4d96ece09bc043b68ddb Mon Sep 17 00:00:00 2001 From: "Konstantin (Tino) Sering" Date: Mon, 8 Dec 2025 13:00:00 +0100 Subject: [PATCH 4/4] sets python version to 3.13 for testing --- .github/workflows/python-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 566dd3d..2c458f1 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - python-version: ['3.9', '3.14'] + python-version: ['3.9', '3.13'] poetry-version: ["2.2"] fail-fast: false runs-on: ${{ matrix.os }}