Add support for Python 3.13

This commit is contained in:
Ivan Kravets
2024-09-23 23:25:46 +03:00
parent 023b58e9f0
commit 2d4a87238a
3 changed files with 6 additions and 5 deletions
+4 -4
View File
@@ -7,8 +7,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
python-version: ["3.6", "3.7", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.6", "3.7", "3.11", "3.12", "3.13.0-rc.2"]
exclude:
- os: macos-latest
python-version: "3.6"
@@ -23,7 +23,7 @@ jobs:
submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
@@ -37,7 +37,7 @@ jobs:
tox -e py
- name: Python Lint
if: ${{ matrix.python-version != '3.6' }}
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' }}
run: |
tox -e lint