File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -13,20 +13,26 @@ jobs:
13
13
os : ["ubuntu-latest", "windows-latest", "macos-latest"]
14
14
exclude :
15
15
- python-version : " 2.7"
16
- os : " ubuntu-latest"
16
+ os : " windows-latest"
17
+ - python-version : " 2.7"
18
+ os : " macos-latest"
17
19
- python-version : " 3.6"
18
20
os : " ubuntu-latest"
19
21
include :
20
- - python-version : " 2.7"
21
- os : " ubuntu-20.04"
22
22
- python-version : " 3.6"
23
23
os : " ubuntu-20.04"
24
24
env :
25
25
TOXENV : py
26
26
27
27
steps :
28
28
- uses : actions/checkout@v3
29
- - name : ${{ matrix.python-version }} - ${{ matrix.os }}
29
+ - if : ${{ matrix.python-version == '2.7' }}
30
+ run : |
31
+ sudo apt-get install python-is-python2
32
+ curl -sSL https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
33
+ python get-pip.py
34
+ - if : ${{ matrix.python-version != '2.7' }}
35
+ name : ${{ matrix.python-version }} - ${{ matrix.os }}
30
36
uses : actions/setup-python@v4
31
37
with :
32
38
python-version : ${{ matrix.python-version }}
You can’t perform that action at this time.
0 commit comments