Skip to content

Commit

Permalink
Temporarily Restore Old CI Pipeline (#841)
Browse files Browse the repository at this point in the history
* Restore old pipelines

* Remove python 2 from setup-python
  • Loading branch information
TimPansino authored Jun 22, 2023
1 parent 4422b95 commit 4da4612
Show file tree
Hide file tree
Showing 4 changed files with 230 additions and 155 deletions.
50 changes: 50 additions & 0 deletions .github/actions/setup-python-matrix/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: "setup-python-matrix"
description: "Sets up all versions of python required for matrix testing in this repo."
runs:
using: "composite"
steps:
- uses: actions/setup-python@v4
with:
python-version: "pypy-3.7"
architecture: x64

# - uses: actions/setup-python@v4
# with:
# python-version: "pypy-2.7"
# architecture: x64

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

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

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

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

- uses: actions/setup-python@v4
with:
python-version: "3.11"
architecture: x64

# - uses: actions/setup-python@v4
# with:
# python-version: "2.7"
# architecture: x64

- name: Install Dependencies
shell: bash
run: |
python3.10 -m pip install -U pip
python3.10 -m pip install -U wheel setuptools tox 'virtualenv<20.22.0'
Loading

0 comments on commit 4da4612

Please sign in to comment.