Skip to content

Commit 4da4612

Browse files
authored
Temporarily Restore Old CI Pipeline (#841)
* Restore old pipelines * Remove python 2 from setup-python
1 parent 4422b95 commit 4da4612

File tree

4 files changed

+230
-155
lines changed

4 files changed

+230
-155
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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'

0 commit comments

Comments
 (0)