Skip to content

Commit

Permalink
chore(ci): use Python 3.10 for jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
mkniewallner committed Oct 5, 2021
1 parent 2caa843 commit 8973d23
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/on_pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: git submodule update --init
- name: Setup Python 3.9.6
- name: Setup Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.9.6"
python-version: "3.10"
- name: Install Python dependencies
run: pip install -e .[test]
- run: make style
Expand All @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, macos-10.15 ]
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10.0-rc.2" ]
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
steps:
- uses: actions/checkout@v2
- run: git submodule update --init
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/push_on_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: git submodule update --init
- name: Setup Python 3.9.6
- name: Setup Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.9.6"
python-version: "3.10"
- name: Install Python dependencies
run: pip install -e .[test]
- run: make style
Expand All @@ -22,10 +22,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: git submodule update --init
- name: Setup Python 3.9.6
- name: Setup Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.9.6"
python-version: "3.10"
- name: Install Python dependencies
run: pip install -e .[test]
- name: Functional Tests
Expand Down

0 comments on commit 8973d23

Please sign in to comment.