File tree Expand file tree Collapse file tree 4 files changed +230
-155
lines changed
actions/setup-python-matrix Expand file tree Collapse file tree 4 files changed +230
-155
lines changed Original file line number Diff line number Diff line change 1+ name : " setup-python-matrix"
2+ description : " Sets up all versions of python required for matrix testing in this repo."
3+ runs :
4+ using : " composite"
5+ steps :
6+ - uses : actions/setup-python@v4
7+ with :
8+ python-version : " pypy-3.7"
9+ architecture : x64
10+
11+ # - uses: actions/setup-python@v4
12+ # with:
13+ # python-version: "pypy-2.7"
14+ # architecture: x64
15+
16+ - uses : actions/setup-python@v4
17+ with :
18+ python-version : " 3.7"
19+ architecture : x64
20+
21+ - uses : actions/setup-python@v4
22+ with :
23+ python-version : " 3.8"
24+ architecture : x64
25+
26+ - uses : actions/setup-python@v4
27+ with :
28+ python-version : " 3.9"
29+ architecture : x64
30+
31+ - uses : actions/setup-python@v4
32+ with :
33+ python-version : " 3.10"
34+ architecture : x64
35+
36+ - uses : actions/setup-python@v4
37+ with :
38+ python-version : " 3.11"
39+ architecture : x64
40+
41+ # - uses: actions/setup-python@v4
42+ # with:
43+ # python-version: "2.7"
44+ # architecture: x64
45+
46+ - name : Install Dependencies
47+ shell : bash
48+ run : |
49+ python3.10 -m pip install -U pip
50+ python3.10 -m pip install -U wheel setuptools tox 'virtualenv<20.22.0'
You can’t perform that action at this time.
0 commit comments