Skip to content

Commit 01650aa

Browse files
author
Frank Odom
committed
Fix typo in build matrix (python version)
1 parent 286f59d commit 01650aa

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
- created
88

99
env:
10-
GCP_PROJECT: sense-staging
11-
GCP_REGION: us-central1
12-
GCP_ARTIFACT_REPOSITORY: innovation-pypi
1310
PYTHON_VERSION: 3.9
1411

1512
jobs:

.github/workflows/test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
python-version: ${{ matrix.python }}
2626

2727
- name: Install Package
28-
run: pip install .[test]
28+
run: |
29+
pip install torch==${{ matrix.torch }}
30+
pip install .[test]
2931
3032
- name: Test
3133
run: |

0 commit comments

Comments
 (0)