Skip to content

Commit

Permalink
Reorder python install order
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPansino committed Jan 20, 2022
1 parent 7f8c4d1 commit c282ca6
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,45 +85,46 @@ jobs:
# Set up all versions of python
- uses: actions/setup-python@v2
with:
python-version: "2.7"
python-version: "pypy-3.7"
architecture: x64

# Setup pypy2 after pypy3 to ensure pypy isn't aliased to pypy3
- uses: actions/setup-python@v2
with:
python-version: "3.6"
python-version: "pypy2"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "3.7"
python-version: "2.7"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "3.8"
python-version: "3.6"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.7"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.8"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "pypy-3.7"
python-version: "3.9"
architecture: x64

# Setup pypy2 after pypy3 to ensure pypy isn't aliased to pypy3
- uses: actions/setup-python@v2
with:
python-version: "pypy2"
python-version: "3.10"
architecture: x64


- name: Install Dependencies
run: |
pip install -U pip
Expand Down Expand Up @@ -160,43 +161,43 @@ jobs:
# Set up all versions of python
- uses: actions/setup-python@v2
with:
python-version: "2.7"
python-version: "pypy-3.7"
architecture: x64

# Setup pypy2 after pypy3 to ensure pypy isn't aliased to pypy3
- uses: actions/setup-python@v2
with:
python-version: "3.6"
python-version: "pypy2"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "3.7"
python-version: "2.7"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "3.8"
python-version: "3.6"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.7"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.8"
architecture: x64

- uses: actions/setup-python@v2
with:
python-version: "pypy-3.7"
python-version: "3.9"
architecture: x64

# Setup pypy2 after pypy3 to ensure pypy isn't aliased to pypy3
- uses: actions/setup-python@v2
with:
python-version: "pypy2"
python-version: "3.10"
architecture: x64

- name: Install Dependencies
Expand Down

0 comments on commit c282ca6

Please sign in to comment.