Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
fail-fast: false
matrix:
backend: [tensorflow, jax, torch]
version: [stable]
version: [keras-stable]
include:
- backend: jax
version: 3.1
version: keras-3.1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't this need to be the latest Keras release?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a test we added recently to try running against Keras a few versions back. Just makes sure we are staying compatible.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, that's great!

- backend: jax
version: nightly
version: keras-nightly
runs-on: ubuntu-latest
env:
KERAS_BACKEND: ${{ matrix.backend }}
Expand All @@ -49,12 +49,12 @@ jobs:
pip install -r requirements.txt --progress-bar off
pip install --no-deps -e "." --progress-bar off
- name: Pin Keras 3.1
if: ${{ matrix.version == '3.1'}}
if: ${{ matrix.version == 'keras-3.1'}}
run: |
pip uninstall -y keras
pip install keras==3.1.0 --progress-bar off
- name: Pin Keras Nightly
if: ${{ matrix.version == 'nightly'}}
if: ${{ matrix.version == 'keras-nightly'}}
run: |
pip uninstall -y keras
pip install keras-nightly --progress-bar off
Expand Down