@@ -11,25 +11,26 @@ jobs:
1111 strategy :
1212 fail-fast : false
1313 matrix :
14- python-version : ["pypy-2.7", "pypy-3.8", "2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
14+ python-version : ["pypy-2.7", "pypy-3.8", "2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
1515 os : [ubuntu-latest, macos-latest, windows-latest]
1616 include :
1717 # Add new helper variables to existing jobs
1818 - {python-version: "pypy-2.7", toxenv: "pypy"}
1919 - {python-version: "pypy-3.8", toxenv: "pypy3"}
2020 - {python-version: "2.7", toxenv: "py27"}
21- - {python-version: "3.7.17 ", toxenv: "py37"}
21+ - {python-version: "3.7", toxenv: "py37"}
2222 - {python-version: "3.8", toxenv: "py38"}
2323 - {python-version: "3.9", toxenv: "py39"}
2424 - {python-version: "3.10", toxenv: "py310"}
2525 - {python-version: "3.11", toxenv: "py311"}
2626 - {python-version: "3.12", toxenv: "py312"}
27+ - {python-version: "3.13", toxenv: "py313"}
2728
2829 steps :
29- - uses : actions/checkout@v3
30+ - uses : actions/checkout@v4
3031
3132 - name : Set up Python ${{ matrix.python-version }}
32- uses : actions/setup-python@v4
33+ uses : actions/setup-python@v5
3334 with :
3435 python-version : ${{ matrix.python-version }}
3536 allow-prereleases : true
4142 echo "PIP_DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
4243
4344 - name : Cache
44- uses : actions/cache@v3
45+ uses : actions/cache@v4
4546 with :
4647 path : ${{ steps.pip-cache.outputs.PIP_DIR }}
4748 key :
0 commit comments