Skip to content

pin tensorflow to nightly version #221

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-xdist
python -m pip install -U chex jax flax grain ml_dtypes optax orbax-checkpoint orbax-export tensorflow tensorflow_datasets
python -m pip install -U chex jax flax grain ml_dtypes optax orbax-checkpoint orbax-export tf-nightly tensorflow_datasets
- name: Run tests
run: |
pytest -n auto jax_ai_stack
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ keywords = []
# pip dependencies of the project
dependencies = [
"chex==0.1.89",
"grain==0.2.9",
"jax==0.6.0",
"grain==0.2.10",
"jax==0.6.2",
"flax==0.10.6",
"ml_dtypes==0.5.1",
"optax==0.2.4",
"optax==0.2.5",
"orbax-checkpoint==0.11.13",
"orbax-export==0.0.6",
]
Expand All @@ -40,8 +40,8 @@ dev = [

# TensorFlow datasets is an extra because it has a large install footprint.
tfds = [
"tensorflow==2.19.0",
"tensorflow_datasets==4.9.8",
"tf-nightly",
"tensorflow_datasets==4.9.9",
]

# Grain is now part of the default installation; keep this for
Expand Down
Loading