Skip to content

Commit 9fcca00

Browse files
authored
Update test.yml
1 parent da9fdc7 commit 9fcca00

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-python@v4
1515
with:
16-
python-version: '3.11'
16+
python-version: '3.13'
1717
cache: pip
1818
- run: python3 -m pip install mypy
1919
- run: mypy sv_ttk/__init__.py
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: ["ubuntu-latest", "windows-latest"]
25-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.0-beta.3"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2626
runs-on: ${{ matrix.os }}
2727
steps:
2828
- uses: actions/checkout@v3
@@ -42,15 +42,14 @@ jobs:
4242
runs-on: macos-latest
4343
strategy:
4444
matrix:
45-
python-version: ["3.8", "3.9", "3.10", "3.11"]
45+
python-version: ["3.9", "3.10", "3.11", "3.12"]
4646
env:
4747
TCLLIBPATH: ./lib
4848
PYTHON: /usr/local/opt/python@${{ matrix.python-version }}/libexec/bin/python
4949
steps:
5050
- uses: actions/checkout@v3
5151
- run: brew install python@${{ matrix.python-version }}
52-
- if: matrix.python-version != '3.8'
53-
run: brew install python-tk@${{ matrix.python-version }}
52+
- run: brew install python-tk@${{ matrix.python-version }}
5453
- run: $PYTHON --version
5554
- run: |
5655
python3 -m pip install .

0 commit comments

Comments
 (0)