diff --git a/.github/workflows/project-ci.yaml b/.github/workflows/project-ci.yaml index ea94844..e397426 100644 --- a/.github/workflows/project-ci.yaml +++ b/.github/workflows/project-ci.yaml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-24.04, windows-2025, macos-15] - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - name: Checkout repo uses: actions/checkout@v5.0.0 @@ -40,10 +40,10 @@ jobs: timeout-minutes: 15 steps: - uses: actions/checkout@v5.0.0 - - name: Set up Python 3.13 + - name: Set up Python 3.14 uses: actions/setup-python@v6.0.0 with: - python-version: 3.13 + python-version: 3.14 - name: Install python dependencies run: | pip install --upgrade pip @@ -56,10 +56,10 @@ jobs: timeout-minutes: 15 steps: - uses: actions/checkout@v5.0.0 - - name: Set up Python 3.13 + - name: Set up Python 3.14 uses: actions/setup-python@v6.0.0 with: - python-version: 3.13 + python-version: 3.14 - name: Install python dependencies run: | pip install --upgrade pip @@ -75,7 +75,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] mdanalysis-version: ["2.9.0", "latest"] name: MDAnalysis Compatibility Tests steps: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d18357f..7fee03a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,7 +23,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6.0.0 with: - python-version: 3.13 + python-version: 3.14 - name: Get latest release from pip id: latestreleased @@ -124,7 +124,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6.0.0 with: - python-version: 3.13 + python-version: 3.14 - name: Install flit run: | diff --git a/pyproject.toml b/pyproject.toml index 7900c86..eee9edb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", @@ -38,7 +39,7 @@ keywords = ["entropy", "macromolecular systems", "MD simulation"] requires-python = ">=3.11" dependencies = [ "numpy==2.2.3", - "mdanalysis>=2.9.0", + "mdanalysis>=2.10.0", "pandas==2.2.3", "psutil==5.9.5", "PyYAML==6.0.2",