Skip to content

Commit ccc4bc2

Browse files
committed
update to supported versions
# Conflicts: # .github/workflows/tests.yml
1 parent 13a608d commit ccc4bc2

File tree

1 file changed

+4
-17
lines changed

1 file changed

+4
-17
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,12 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest, macos-latest, windows-latest]
18-
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
19-
exclude:
20-
# excludes 2.7 on windows as chocolatey does not support it anymore
21-
- os: windows-latest
22-
python-version: 2.7
23-
- os: ubuntu-latest
24-
python-version: 3.5
25-
- os: ubuntu-latest
26-
python-version: 3.6
27-
include:
28-
- os: ubuntu-20.04
29-
python-version: 3.5
30-
- os: ubuntu-20.04
31-
python-version: 3.6
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
3219

3320
steps:
34-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
3522
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
3724
with:
3825
python-version: ${{ matrix.python-version }}
3926

@@ -47,5 +34,5 @@ jobs:
4734
pip install -e .
4835
- name: run tests
4936
run: |
50-
coverage run setup.py test
37+
coverage run -m unittest discover tests
5138
codecov

0 commit comments

Comments
 (0)