diff --git a/.github/workflows/gh-ci.yaml b/.github/workflows/gh-ci.yaml index bbaf7c7..9f615b7 100644 --- a/.github/workflows/gh-ci.yaml +++ b/.github/workflows/gh-ci.yaml @@ -27,12 +27,12 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, ] - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] include: - os: windows-latest - python-version: "3.13" + python-version: "3.14" - os: macos-latest - python-version: "3.13" + python-version: "3.14" steps: - uses: actions/checkout@v4 diff --git a/panedr/pyproject.toml b/panedr/pyproject.toml index 80d95b4..7c340cd 100644 --- a/panedr/pyproject.toml +++ b/panedr/pyproject.toml @@ -19,15 +19,14 @@ classifiers = [ "Topic :: Scientific/Engineering :: Chemistry", "Topic :: Scientific/Engineering :: Physics", "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Operating System :: OS Independent", ] urls = {Homepage = "https://github.com/MDAnalysis/panedr"} -requires-python = ">= 3.9" +requires-python = ">= 3.11" dependencies = [ "pyedr", "pandas", diff --git a/pyedr/pyproject.toml b/pyedr/pyproject.toml index 89f7853..28db3ba 100644 --- a/pyedr/pyproject.toml +++ b/pyedr/pyproject.toml @@ -19,15 +19,14 @@ classifiers = [ "Topic :: Scientific/Engineering :: Chemistry", "Topic :: Scientific/Engineering :: Physics", "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Operating System :: OS Independent", ] urls = {Homepage = "https://github.com/MDAnalysis/panedr"} -requires-python = ">= 3.9" +requires-python = ">= 3.11" dependencies = [ "numpy", "tqdm",