Skip to content

Commit be0f16c

Browse files
committed
exclude py3.6 from test matrix for ubuntu
1 parent 25104dc commit be0f16c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
16+
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
exclude:
1919
- os: windows-latest
2020
python-version: "2.7"
21+
- os: ubuntu-latest
22+
python-version: "3.6"
2123
fail-fast: false
2224

2325
steps:
@@ -39,4 +41,4 @@ jobs:
3941
run: "./update_cpp.sh"
4042

4143
- name: "Run tox targets for ${{ matrix.python-version }}"
42-
run: "python -m tox"
44+
run: "python -m tox"

0 commit comments

Comments
 (0)