Skip to content

Commit

Permalink
Use Python 3.10, and use conda-forge over main
Browse files Browse the repository at this point in the history
Use Ubuntu latest to build and test
  • Loading branch information
oleksandr-pavlyk committed Aug 31, 2023
1 parent 12622fa commit 2f896ae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ env:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.9]
python: ['3.10']
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -38,7 +38,7 @@ jobs:
run: conda install conda-build
- name: Build conda package
run: |
CHANNELS="-c intel -c main --override-channels"
CHANNELS="-c conda-forge -c intel --override-channels"
VERSIONS="--python ${{ matrix.python }}"
TEST="--no-test"
Expand All @@ -59,9 +59,9 @@ jobs:

strategy:
matrix:
python: [3.9]
python: ['3.10']
experimental: [false]
runner: [ubuntu-20.04]
runner: [ubuntu-latest]
continue-on-error: ${{ matrix.experimental }}
env:
CHANNELS: -c intel -c main --override-channels
Expand Down

0 comments on commit 2f896ae

Please sign in to comment.