-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temporarily Restore Old CI Pipeline (#841)
* Restore old pipelines * Remove python 2 from setup-python
- Loading branch information
1 parent
4422b95
commit 4da4612
Showing
4 changed files
with
230 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
Oops, something went wrong.