Skip to content

Commit 05aa080

Browse files
authored
Use tensorflow 2.15 (#312)
1 parent 8fcd5be commit 05aa080

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ other *untested* combinations may also work.
9494

9595
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl |
9696
------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------|
97-
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | 1.15.0 |
98-
[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.14 | 1.15.0 | 1.15.0 |
97+
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | 1.15.1 |
98+
[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | 1.15.1 |
9999
[1.14.0](https://github.com/tensorflow/transform/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | 1.14.0 |
100100
[1.13.0](https://github.com/tensorflow/transform/blob/v1.13.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.12 | 1.13.1 | 1.13.0 |
101101
[1.12.0](https://github.com/tensorflow/transform/blob/v1.12.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.11 | 1.12.0 | 1.12.0 |

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
(previously was 16.04).
1111
* Explicitly use Keras 2 or `tf_keras`` if Keras 3 is installed.
1212
* Added python 3.11 support.
13-
* Depends on `tensorflow~=2.15`.
13+
* Depends on `tensorflow 2.15`.
1414
* Enable passing `tf.saved_model.SaveOptions` to model saving functionality.
1515
* Census and sentiment examples updated to only use Keras instead of
1616
estimator.

docs/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ other *untested* combinations may also work.
9393

9494
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
9595
------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------
96-
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | 1.15.0
97-
[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.14 | 1.15.0 | 1.15.0
96+
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | 1.15.1
97+
[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | 1.15.1
9898
[1.14.0](https://github.com/tensorflow/transform/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | 1.14.0
9999
[1.13.0](https://github.com/tensorflow/transform/blob/v1.13.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.12 | 1.13.1 | 1.13.0
100100
[1.12.0](https://github.com/tensorflow/transform/blob/v1.12.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.11 | 1.12.0 | 1.12.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ def _make_required_install_packages():
5050
'protobuf>=3.20.3,<5;python_version<"3.11"',
5151
'pyarrow>=10,<11',
5252
'pydot>=1.2,<2',
53-
'tensorflow~=2.15',
53+
'tensorflow>=2.15,<2.16',
5454
'tensorflow-metadata' + select_constraint(
5555
default='>=1.15.0,<1.16.0',
5656
nightly='>=1.16.0.dev',
5757
git_master='@git+https://github.com/tensorflow/metadata@master'),
5858
'tfx-bsl' + select_constraint(
59-
default='>=1.15.0,<1.16.0',
59+
default='>=1.15.1,<1.16.0',
6060
nightly='>=1.16.0.dev',
6161
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
6262
]

0 commit comments

Comments
 (0)