File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -10,26 +10,20 @@ jobs:
10
10
matrix :
11
11
12
12
python-version : [
13
- # "3.6", # TODO: Error: The version '3.6' with architecture 'x64' was not found for Ubuntu 22.04.
14
- " 3.7" ,
15
13
" 3.8" ,
16
14
" 3.9" ,
17
15
" 3.10" ,
18
- " 3.11"
16
+ " 3.11" ,
17
+ " 3.12" ,
19
18
]
20
19
click-version : [
21
20
" 5.1" ,
22
21
" 6.7" ,
23
22
" 7.0" ,
24
23
" 7.1.2" ,
25
24
" 8.0.4" ,
26
- " 8.1.3 " ,
25
+ " 8.1.7 " ,
27
26
]
28
- exclude :
29
- # click 8.1 drops support for py36
30
- - python-version : " 3.6"
31
- click-version : " 8.1.3"
32
-
33
27
34
28
steps :
35
29
- uses : actions/checkout@v3
39
33
python-version : ${{ matrix.python-version }}
40
34
- name : Install package
41
35
run : |
42
- python -m pip install --upgrade pip
36
+ python -m pip install --upgrade pip setuptools
43
37
pip install click==${{ matrix.click-version }}
44
38
python setup.py install
45
39
- name : Verify click version
You can’t perform that action at this time.
0 commit comments