Skip to content

Commit

Permalink
Remove a declaration for keras from pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
keisen committed Mar 25, 2024
1 parent 569bbe3 commit 135aef2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
- name: Install current Tensorflow
if: matrix.tensorflow == 'current'
run: |
python -m pip install --upgrade tensorflow keras
python -m pip install --upgrade tensorflow
- name: Install pre-released Tensorflow
if: matrix.tensorflow == 'pre'
run: |
python -m pip install --upgrade --pre tensorflow keras
python -m pip install --upgrade --pre tensorflow
- name: Install dependencies
run: |
python -m pip install --upgrade -e .[develop,examples]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package-up-to-TF2.11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Upgrade pip and Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade -e .[develop,examples] tensorflow~=${{ matrix.tensorflow }} keras~=${{ matrix.tensorflow }}
python -m pip install --upgrade -e .[develop,examples] tensorflow~=${{ matrix.tensorflow }}
- name: Test with pytest
run: |
pytest -n auto --dist loadscope
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Upgrade pip and Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade -e .[develop,examples] tensorflow~=${{ matrix.tensorflow }} keras~=${{ matrix.tensorflow }}
python -m pip install --upgrade -e .[develop,examples] tensorflow~=${{ matrix.tensorflow }}
- name: Test with pytest
run: |
pytest -n auto --dist loadscope
Expand Down

0 comments on commit 135aef2

Please sign in to comment.