diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 1ab8e46..2232bea 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-20.04 strategy: - max-parallel: 4 + max-parallel: 5 fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] env: PYTHON: ${{ matrix.python-version }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index bce1bae..5b5fe80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ The format is inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0 ## [Unreleased] ### Added Features and Improvements 🙌: -- Add python 3.11 support🎉 +- Add python 3.11+3.12 support🎉 - Add tutorial explaining the theory ### Other changes: diff --git a/README.md b/README.md index 5723c12..7585c6e 100755 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ We kindly ask you to cite these articles in case you use this software package f ## Features - Intuitive usage via module and CI - Sklearn-style API for fast integration into your Python workflow -- Supports Python 3.8-3.11 +- Supports Python 3.8-3.12 - Multitude of [publications](https://www.moldyn.uni-freiburg.de/publications.html) with dcTMD ## Implemented Key Functionalities diff --git a/setup.py b/setup.py index ca2fe84..0c329eb 100755 --- a/setup.py +++ b/setup.py @@ -55,6 +55,7 @@ def get_extra_requirements(path, add_all=True): 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Scientific/Engineering :: Physics', 'Topic :: Scientific/Engineering :: Bio-Informatics', 'Topic :: Software Development :: Libraries :: Python Modules',