diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 865c7e99..85e1a492 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: run: | pip install -r requirements.txt -e .[dev] - - name: Install dependencies based on the pyproject.toml file (for 3.9 and 3.11) + - name: Install dependencies based on the pyproject.toml file (for Python 3.9-3.11) if: ${{matrix.python-version != '3.12'}} run: | pip install -e .[dev] diff --git a/pyproject.toml b/pyproject.toml index d77aa3df..96b46b07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ classifiers = [ "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering",