Skip to content

Commit

Permalink
Fix build yaml files (#51)
Browse files Browse the repository at this point in the history
* fix yaml files

* 3.10 in quotes

* just test 310
  • Loading branch information
gayverjr authored Apr 10, 2023
1 parent 5e59486 commit 2a5448d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/intel-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: [3.7,3.8,3.9,python3.10]
python-version: ["3.10"]



Expand All @@ -23,8 +23,7 @@ jobs:
with:
auto-activate-base: true
activate-environment: true
python-version: ${{ if eq(matrix.python-version, 'python3.10') }}3.10{{ else }}${{ matrix.python-version }}{{ endif }}

python-version: ${{ matrix.python-version }}

- name: Install system dependencies
run: |
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: [3.8,3.9,python3.10]
python-version: ["3.10"]



Expand All @@ -19,11 +19,12 @@ jobs:
name: Check out repository

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2.1.1
uses: conda-incubator/setup-miniconda@v2
with:
auto-activate-base: true
activate-environment: true
python-version: ${{ if eq(matrix.python-version, 'python3.10') }}3.10{{ else }}${{ matrix.python-version }}{{ endif }}
python-version: ${{ matrix.python-version }}



- name: Install system dependencies
Expand Down

0 comments on commit 2a5448d

Please sign in to comment.