diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 81b9b4c..5fac05a 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -17,10 +17,10 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Set up Python 3.14 + - name: Set up Python 3.13 uses: actions/setup-python@v1 with: - python-version: '3.14' + python-version: '3.13' architecture: ${{ matrix.config.python-arch }} - name: Install Excalibur run: | diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index f0192d4..c633b7a 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.14] + python-version: [3.13] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 77be2f1..1dfb634 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.12, 3.13, 3.14] + python-version: [3.11, 3.12, 3.13] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 84b001e..84d529d 100644 --- a/setup.py +++ b/setup.py @@ -55,9 +55,9 @@ def setup_package(): # Trove classifiers # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], )