Skip to content

Commit 1aa7610

Browse files
authored
update test matrix (#13)
* try new test matrix * install setuptools
1 parent a1fb8fc commit 1aa7610

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,20 @@ jobs:
1010
matrix:
1111

1212
python-version: [
13-
# "3.6", # TODO: Error: The version '3.6' with architecture 'x64' was not found for Ubuntu 22.04.
14-
"3.7",
1513
"3.8",
1614
"3.9",
1715
"3.10",
18-
"3.11"
16+
"3.11",
17+
"3.12",
1918
]
2019
click-version: [
2120
"5.1",
2221
"6.7",
2322
"7.0",
2423
"7.1.2",
2524
"8.0.4",
26-
"8.1.3",
25+
"8.1.7",
2726
]
28-
exclude:
29-
# click 8.1 drops support for py36
30-
- python-version: "3.6"
31-
click-version: "8.1.3"
32-
3327

3428
steps:
3529
- uses: actions/checkout@v3
@@ -39,7 +33,7 @@ jobs:
3933
python-version: ${{ matrix.python-version }}
4034
- name: Install package
4135
run: |
42-
python -m pip install --upgrade pip
36+
python -m pip install --upgrade pip setuptools
4337
pip install click==${{ matrix.click-version }}
4438
python setup.py install
4539
- name: Verify click version

0 commit comments

Comments
 (0)