Skip to content

Commit

Permalink
Update requirements.txt (#1745)
Browse files Browse the repository at this point in the history
* Update requirements.txt

* Update autogen.py

* Update Dockerfile
  • Loading branch information
sachinprasadhs authored Jan 30, 2024
1 parent c9e226d commit 6623a07
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.9

COPY requirements.txt ./
RUN pip install -r requirements.txt
RUN pip install keras==3.0.2
RUN pip install keras==3.0.4

COPY ./ ./
WORKDIR scripts
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
black~=23.12.1
black~=24.1.1
pygments>=2.7.4
markdown>=3.3
matplotlib
Expand All @@ -12,6 +12,6 @@ pydot
boto3
tensorflow
keras-tuner==1.4.6
keras-cv==0.8.0
keras-cv==0.8.1
tf_keras==2.15.0
keras-nlp==0.7.0
4 changes: 2 additions & 2 deletions scripts/autogen.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
GUIDES_GH_LOCATION = Path("keras-team") / "keras-io" / "blob" / "master" / "guides"
KERAS_TEAM_GH = "https://github.com/keras-team"
PROJECT_URL = {
"keras": f"{KERAS_TEAM_GH}/keras/tree/v3.0.2/",
"keras": f"{KERAS_TEAM_GH}/keras/tree/v3.0.4/",
"keras_tuner": f"{KERAS_TEAM_GH}/keras-tuner/tree/v1.4.6/",
"keras_cv": f"{KERAS_TEAM_GH}/keras-cv/tree/v0.8.0/",
"keras_cv": f"{KERAS_TEAM_GH}/keras-cv/tree/v0.8.1/",
"keras_nlp": f"{KERAS_TEAM_GH}/keras-nlp/tree/v0.7.0/",
"tf_keras": f"{KERAS_TEAM_GH}/tf-keras/tree/v2.15.0/",
}
Expand Down

0 comments on commit 6623a07

Please sign in to comment.