Skip to content

Commit

Permalink
Merge pull request #450 from pyiron/python310
Browse files Browse the repository at this point in the history
Try Python 3.10
  • Loading branch information
jan-janssen authored Dec 2, 2021
2 parents 4a40154 + ce12046 commit 187f2cf
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backwards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
awk 'NR>3{ print $0 }' .ci_support/environment-notebooks.yml >> .ci_support/environment.yml
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.9
python-version: "3.10"
mamba-version: "*"
channels: conda-forge
channel-priority: strict
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,12 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.9]

steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
python-version: "3.10"
mamba-version: "*"
channels: conda-forge
channel-priority: strict
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.9
python-version: "3.10"
mamba-version: "*"
channels: conda-forge
channel-priority: strict
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.10"

- name: Install dependencies
run: >-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
awk 'NR>3{ print $0 }' .ci_support/environment-docs.yml >> .ci_support/environment.yml
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.9
python-version: "3.10"
mamba-version: "*"
channels: conda-forge
channel-priority: strict
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
awk 'NR>3{ print $0 }' .ci_support/environment-notebooks.yml >> .ci_support/environment.yml
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.9
python-version: "3.10"
mamba-version: "*"
channels: conda-forge
channel-priority: strict
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/pypicheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,13 @@ on:

jobs:
build:

runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
python-version: [3.9]

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
python-version: "3.10"
channel-priority: strict
environment-file: .ci_support/environment.yml
- name: Setup
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9]
python-version: ['3.10']
include:
- operating-system: ubuntu-latest
python-version: 3.7
- operating-system: ubuntu-latest
python-version: 3.8
- operating-system: ubuntu-latest
python-version: 3.9

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 187f2cf

Please sign in to comment.