Skip to content

Commit

Permalink
Update CI Python versions (#289)
Browse files Browse the repository at this point in the history
Python 3.8 is EOL, and Python 3.13 was recently released.
  • Loading branch information
calcmogul authored Oct 16, 2024
1 parent 34e0d18 commit 8f3bc47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ jobs:
fail-fast: false
matrix:
os: [macos-14, windows-2022, ubuntu-22.04]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
exclude:
- os: macos-14
python-version: '3.8'
- os: macos-14
python-version: '3.9'
name: Test - ${{ matrix.os }}, ${{ matrix.python-version }}
Expand Down Expand Up @@ -128,7 +126,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.13'

- name: Install Python dependencies
run: pip install build
Expand Down
4 changes: 2 additions & 2 deletions wpiformat/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies = [
"clang-format==18.1.1",
"clang-tidy==18.1.1",
"gersemi==0.11.0",
"regex==2023.10.3"
"regex==2024.9.11"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down Expand Up @@ -38,7 +38,7 @@ wpiformat = "wpiformat:main"
requires = [
"clang-format==18.1.1",
"clang-tidy==18.1.1",
"regex==2023.10.3",
"regex==2024.9.11",
"setuptools>=61.0",
"setuptools-git-versioning"
]
Expand Down

0 comments on commit 8f3bc47

Please sign in to comment.