Skip to content

Commit

Permalink
move numpy pin to integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwashington committed Jun 17, 2024
1 parent 1fd7648 commit f737acf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/.github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ jobs:
with:
python-version: "3.10"
- name: Install Python dependencies
run: | # force numpy to be latest non 2.x version due to incompatibility with google-cloud-aiplatform
run: |
python3 -m pip install --upgrade pip
pip3 install numpy==1.26.4
pip3 install -r requirements.txt
- name: Check for licenses
run: |
Expand Down Expand Up @@ -63,8 +62,9 @@ jobs:
with:
python-version: "3.10"
- name: Install Python dependencies
run: |
run: | # force numpy to be latest non 2.x version due to incompatibility with google-cloud-aiplatform
python3 -m pip install --upgrade pip
pip3 install numpy==1.26.4
pip3 install -r requirements.txt
- name: 'Authenticate to Google Cloud'
uses: 'google-github-actions/auth@v2'
Expand Down

0 comments on commit f737acf

Please sign in to comment.