Skip to content

Commit

Permalink
Bump to 3.5 as the min version
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdangerw committed Dec 23, 2024
1 parent 147c563 commit c74ec0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
version: [keras-stable]
include:
- backend: jax
version: keras-3.4
version: keras-3.5
- backend: jax
version: keras-nightly
runs-on: ubuntu-latest
Expand Down Expand Up @@ -48,11 +48,11 @@ jobs:
run: |
pip install -r requirements.txt --progress-bar off
pip install --no-deps -e "." --progress-bar off
- name: Pin Keras 3.4
if: ${{ matrix.version == 'keras-3.4'}}
- name: Pin Keras 3.5
if: ${{ matrix.version == 'keras-3.5'}}
run: |
pip uninstall -y keras
pip install keras==3.4.1 --progress-bar off
pip install keras==3.5.0 --progress-bar off
- name: Pin Keras Nightly
if: ${{ matrix.version == 'keras-nightly'}}
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_version(rel_path):
author_email="[email protected]",
license="Apache License 2.0",
install_requires=[
"keras>=3.4.1",
"keras>=3.5",
"absl-py",
"numpy",
"packaging",
Expand Down

0 comments on commit c74ec0b

Please sign in to comment.