diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index e3ea46d..9ff743e 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -17,12 +17,16 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 + - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v6 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies run: | pip install setuptools