Skip to content
Open
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 nightly_test_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ tensorflow-io==0.24.0
tensorflow-io-gcs-filesystem==0.24.0
tensorflow-metadata>=1.17.1
# tensorflow-ranking==0.5.5
tensorflow-serving-api==2.17.1
tensorflow-serving-api>=2.16.1
tensorflow-text==2.17.0
tensorflow-transform>=1.17.0
tensorflow_model_analysis>=0.48.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["tensorflow", "tfx"]
requires-python = ">=3.9,<3.11"
requires-python = ">=3.9,<3.13"
[project.urls]
Homepage = "https://www.tensorflow.org/tfx"
Repository = "https://github.com/tensorflow/tfx"
Expand Down
2 changes: 1 addition & 1 deletion test_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ tensorflow-io==0.24.0
tensorflow-io-gcs-filesystem==0.24.0
tensorflow-metadata>=1.16.1
# tensorflow-ranking==0.5.5
tensorflow-serving-api==2.17.1
tensorflow-serving-api>=2.16.1
tensorflow-text==2.17.0
tensorflow-transform>=1.17.0
tensorflow_model_analysis>=0.48.0
Expand Down
24 changes: 12 additions & 12 deletions tfx/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def make_pipeline_sdk_required_install_packages():
"ml-metadata"
+ select_constraint(
# LINT.IfChange
default=">=1.17.0,<1.18.0",
default=">=1.16.0,<1.19.0",
# LINT.ThenChange(tfx/workspace.bzl)
nightly=">=1.17.0",
git_master="@git+https://github.com/google/ml-metadata@master",
Expand Down Expand Up @@ -90,7 +90,7 @@ def make_required_install_packages():
"keras-tuner>=1.0.4,<2,!=1.4.0,!=1.4.1",
"kubernetes>=10.0.1,<27",
"numpy>=1.16,<2",
"pyarrow>=10,<11",
"pyarrow>=10",
# TODO: b/358471141 - Orjson 3.10.7 breaks TFX OSS tests.
# Unpin once the issue with installation is resolved.
"orjson!=3.10.7",
Expand All @@ -105,32 +105,32 @@ def make_required_install_packages():
# Pip might stuck in a TF 1.15 dependency although there is a working
# dependency set with TF 2.x without the sync.
# pylint: disable=line-too-long
"tensorflow" + select_constraint(">=2.17.0,<2.18"),
"tensorflow" + select_constraint(">=2.16.0,<2.18"),
# pylint: enable=line-too-long
"tensorflow-hub>=0.15.0,<0.16",
"tensorflow-data-validation"
+ select_constraint(
default=">=1.17.0,<1.18.0",
nightly=">=1.17.0",
default=">=1.16.1,<1.19.0",
nightly=">=1.16.1.dev",
git_master=("@git+https://github.com/tensorflow/data-validation@master"),
),
"tensorflow-model-analysis"
+ select_constraint(
default=">=0.48.0,<0.49.0",
nightly=">=0.48.0",
default=">=0.47.0,<0.49.0",
nightly=">=0.47.0.dev",
git_master="@git+https://github.com/tensorflow/model-analysis@master",
),
"tensorflow-serving-api>=2.17,<2.18",
"tensorflow-serving-api>=2.16,<2.17",
"tensorflow-transform"
+ select_constraint(
default=">=1.17.0,<1.18.0",
nightly=">=1.17.0",
default=">=1.16.0,<1.19.0",
nightly=">=1.16.0.dev",
git_master="@git+https://github.com/tensorflow/transform@master",
),
"tfx-bsl"
+ select_constraint(
default=">=1.17.1,<1.18.0",
nightly=">=1.17.1",
default=">=1.16.1,<1.18.0",
nightly=">=1.16.0.dev",
git_master="@git+https://github.com/tensorflow/tfx-bsl@master",
),
]
Expand Down
13 changes: 0 additions & 13 deletions tfx/orchestration/airflow/__init__.py

This file was deleted.