Skip to content

Commit

Permalink
Uninstall pypi keras from TF in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sampathweb committed Oct 16, 2023
1 parent 36322e7 commit 862ca70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt --progress-bar off --upgrade
pip uninstall -y keras keras-nightly
pip install -e "." --progress-bar off --upgrade
- name: Test applications with pytest
if: ${{ steps.filter.outputs.applications == 'true' }}
Expand Down Expand Up @@ -108,6 +109,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt --progress-bar off --upgrade
pip uninstall -y keras keras-nightly
pip install -e "." --progress-bar off --upgrade
- name: Lint
run: bash shell/lint.sh
3 changes: 3 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt --progress-bar off --upgrade
pip uninstall -y keras keras-nightly
pip install -e "." --progress-bar off --upgrade
- name: Test integrations
if: ${{ matrix.backend != 'numpy'}}
Expand Down Expand Up @@ -78,6 +79,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt --progress-bar off --upgrade
pip uninstall -y keras keras-nightly
pip install -e "." --progress-bar off --upgrade
- name: Lint
run: bash shell/lint.sh
Expand All @@ -97,6 +99,7 @@ jobs:
python -m pip install --upgrade pip setuptools
pip install twine
pip install -r requirements.txt --progress-bar off --upgrade
pip uninstall -y keras keras-nightly
- name: Build wheel file
run: |
python pip_build.py --nightly
Expand Down

0 comments on commit 862ca70

Please sign in to comment.