@@ -20,17 +20,17 @@ jobs:
20
20
strategy :
21
21
fail-fast : false
22
22
matrix :
23
- python_version : [ '3.6 ', '3.7 ', '3.8 ', '3.9 ', '3.10 ', 'pypy-3.6 ' ]
23
+ python_version : ['3.7 ', '3.8 ', '3.9 ', '3.10 ', '3.11.0-alpha - 3.11.0 ', 'pypy-3.8 ' ]
24
24
os : [windows-latest, ubuntu-latest] # , macos-latest]
25
25
include :
26
26
- os : windows-latest
27
27
python_version : ' msys2'
28
28
29
29
name : ${{ matrix.os }} - Python ${{ matrix.python_version }}
30
30
steps :
31
- - uses : actions/checkout@v1
31
+ - uses : actions/checkout@v3
32
32
- name : Setup python
33
- uses : actions/setup-python@v2
33
+ uses : actions/setup-python@v4
34
34
if : matrix.python_version != 'msys2'
35
35
with :
36
36
python-version : ${{ matrix.python_version }}
83
83
- name : Setup python
84
84
uses : actions/setup-python@v2
85
85
with :
86
- python-version : " 3.6 "
86
+ python-version : " 3.7 "
87
87
architecture : x64
88
88
- run : pip install -e .[toml,test] pytest virtualenv
89
89
- run : pytest --test-legacy testing/test_setuptools_support.py || true # ignore fail flaky on ci
@@ -92,11 +92,11 @@ jobs:
92
92
strategy :
93
93
fail-fast : false
94
94
matrix :
95
- python_version : [ '3.6 ', '3.9', 'pypy-3.6 ' ]
95
+ python_version : [ '3.7 ', '3.9', 'pypy-3.8 ' ]
96
96
installer : ["pip install"]
97
97
name : check self install - Python ${{ matrix.python_version }} via ${{ matrix.installer }}
98
98
steps :
99
- - uses : actions/checkout@v1
99
+ - uses : actions/checkout@v3
100
100
- name : Setup python
101
101
uses : actions/setup-python@v2
102
102
with :
@@ -105,7 +105,7 @@ jobs:
105
105
# self install testing needs some clarity
106
106
# so its being executed without any other tools running
107
107
# setuptools smaller 52 is needed to do easy_install
108
- - run : pip install -U "setuptools<52" tomli packaging
108
+ - run : pip install -U "setuptools<52" tomli packaging typing_extensions importlib_metadata
109
109
- run : python setup.py egg_info
110
110
- run : python setup.py sdist
111
111
- run : ${{ matrix.installer }} dist/*
0 commit comments