diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e3292629..b759f768 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,16 +15,18 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: - python-version: [ "3.12", "3.11", "3.10", "3.9", "3.8" ] + python-version: [ "3.14", "3.13", "3.12", "3.11", "3.10", "3.9", "3.8" ] steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Run tests run: make test diff --git a/setup.py b/setup.py index 8c18b935..62cf28c1 100755 --- a/setup.py +++ b/setup.py @@ -43,6 +43,12 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "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", ], scripts=['gpxinfo'], )