Skip to content

Commit

Permalink
CI: add newer Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed May 4, 2024
1 parent a02469e commit 5c0be77
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
# TODO: remove this once the warning is fixed in Python 3.13-dev:
env:
PYTHONWARNINGS: error,default::DeprecationWarning
with:
python-version: ${{ matrix.python-version }}
- name: Double-check Python version
Expand Down

0 comments on commit 5c0be77

Please sign in to comment.