From b36446cedf0e3a83606be199510c94c84ded3fa6 Mon Sep 17 00:00:00 2001 From: Steven Dahdah Date: Tue, 17 Feb 2026 21:06:48 -0500 Subject: [PATCH 1/2] Update for Python 3.14 --- .github/workflows/test-package.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 4308702..9d9a632 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.12'] + python-version: ['3.14'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{matrix.python-version}} diff --git a/pyproject.toml b/pyproject.toml index bee7ade..739790b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,9 +14,10 @@ dependencies = [ "joblib>=1.4.0", "matplotlib>=3.9.0", ] -requires-python = ">=3.7, <3.14" +requires-python = ">=3.7" authors = [ {name="Steven Dahdah", email="steven.dahdah@mail.mcgill.ca"}, + {name="Timothy Everett Adams", email="timothy.adams@mail.mcgill.ca"}, {name="James Richard Forbes", email="james.richard.forbes@mcgill.ca"}, ] description = "D-K iteration in Python" From ae7e7537f7dff4f6dbe1195df426dfc9c8b03a6c Mon Sep 17 00:00:00 2001 From: Steven Dahdah Date: Tue, 17 Feb 2026 21:10:00 -0500 Subject: [PATCH 2/2] Bump version --- CITATION.cff | 2 +- README.rst | 2 +- doc/conf.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 38f6d91..c7ad650 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -14,5 +14,5 @@ authors: orcid: "https://orcid.org/0000-0002-1987-9268" affiliation: "McGill University" title: "decargroup/dkpy" -version: v0.1.9 +version: v0.1.10 url: "https://github.com/decargroup/dkpy" diff --git a/README.rst b/README.rst index 40bf832..bb19896 100644 --- a/README.rst +++ b/README.rst @@ -141,6 +141,6 @@ If you use this software in your research, please cite it as below or see url={https://github.com/decargroup/dkpy}, publisher={Zenodo}, author={Steven Dahdah and Timothy Everett Adams and James Richard Forbes}, - version = {{v0.1.9}}, + version = {{v0.1.10}}, year={2025}, } diff --git a/doc/conf.py b/doc/conf.py index 7348137..79381f9 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -9,8 +9,8 @@ project = "dkpy" copyright = "2025, Steven Dahdah, Timothy Everett Adams and James Richard Forbes" author = "Steven Dahdah, Timothy Everett Adams and James Richard Forbes" -version = "0.1.9" -release = "0.1.9" +version = "0.1.10" +release = "0.1.10" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 739790b..0e212d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "dkpy" -version = "0.1.9" +version = "0.1.10" dependencies = [ "numpy>=1.21.0", "scipy>=1.7.0",