Skip to content

Commit

Permalink
Merge pull request #5 from OU-CS3560/krerkkiat/add-python-313
Browse files Browse the repository at this point in the history
Add Python 3.13
  • Loading branch information
krerkkiat authored Oct 11, 2024
2 parents c291217 + 9532829 commit ee4a6c0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
fail-fast: false
matrix:
include:
- {name: Linux, python: '3.12', os: ubuntu-latest, tox: py312}
- {name: Windows, python: '3.12', os: windows-latest, tox: py312}
- {name: Mac, python: '3.12', os: macos-latest, tox: py312}
- {name: Linux, python: '3.13', os: ubuntu-latest, tox: py313}
- {name: Windows, python: '3.13', os: windows-latest, tox: py313}
- {name: Mac, python: '3.13', os: macos-latest, tox: py313}
- {name: '3.12', python: '3.12', os: ubuntu-latest, tox: py312}
- {name: '3.11', python: '3.11', os: ubuntu-latest, tox: py311}
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}
- {name: Typing, python: '3.12', os: ubuntu-latest, tox: typing}
Expand Down
5 changes: 4 additions & 1 deletion MAINTENANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

## Note

- GitHub Codespace now use Python 3.12. However, our school machines still have 3.10.
### Why are we supporting Python 3.10 to 3.13?

Our lab machines still using Python 3.10.x. GitHub Codespace should still be using Python 3.12.x.
Student who want to run the grading script locally may download 3.13 from python.org website.

## First time setup

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires =
tox>=4
env_list =
py3{10,11,12}
py3{10,11,12,13}
lint
typing

Expand Down

0 comments on commit ee4a6c0

Please sign in to comment.