Skip to content

Commit

Permalink
Moving to Python 3.10 as default on GH Actions (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed Jul 19, 2022
1 parent 74a8681 commit a08a91e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/black.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Install Black
run: pip install 'black==20.8b1' 'click==8.0.1'
- name: Run black --check .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Update package index
run: sudo apt-get update
- name: Install mpi libs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validatemanifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wintests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Upgrade PIP
run: python -m pip install --upgrade pip
- name: Install deps
Expand Down

0 comments on commit a08a91e

Please sign in to comment.