Skip to content

Commit

Permalink
TFXBSL 1.7.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 431782938
  • Loading branch information
tfx-copybara committed Mar 1, 2022
1 parent 38a576c commit 14b46fa
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ combinations may also work.

tfx-bsl | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-serving-api |
------------------------------------------------------------------------------- | -----------------| ---------|-------------------|---------------------|------------------------|
[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.35.0 | 5.0.0 | nightly (1.x/2.x) | 1.6.0 | 2.7.0 |
[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.36.0 | 5.0.0 | nightly (1.x/2.x) | 1.7.0 | 2.8.0 |
[1.7.0](https://github.com/tensorflow/tfx-bsl/blob/v1.7.0/RELEASE.md) | 2.36.0 | 5.0.0 | 1.15 / 2.8 | 1.7.0 | 2.8.0 |
[1.6.0](https://github.com/tensorflow/tfx-bsl/blob/v1.6.0/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15 / 2.7 | 1.6.0 | 2.7.0 |
[1.5.0](https://github.com/tensorflow/tfx-bsl/blob/v1.4.0/RELEASE.md) | 2.34.0 | 5.0.0 | 1.15 / 2.7 | 1.5.0 | 2.7.0 |
[1.4.0](https://github.com/tensorflow/tfx-bsl/blob/v1.4.0/RELEASE.md) | 2.31.0 | 5.0.0 | 1.15 / 2.6 | 1.4.0 | 2.6.0 |
Expand Down
20 changes: 20 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,34 @@

## Bug Fixes and Other Changes

## Breaking Changes

## Deprecations

# Version 1.7.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Depends on `apache-beam[gcp]>=2.36,<3`.
* Depends on `tensorflow-metadata>=1.7,<1.8`.
* Depends on
`tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3`.
* Depends on
`tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3`.
* Added a TFXIO where the user defines the beam source.

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 1.6.0

## Major Features and Improvements
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,18 +166,18 @@ def select_constraint(default, nightly=None, git_master=None):
# six, and protobuf) with TF.
install_requires=[
'absl-py>=0.9,<2.0.0',
'apache-beam[gcp]>=2.35,<3',
'apache-beam[gcp]>=2.36,<3',
'google-api-python-client>=1.7.11,<2',
'numpy>=1.16,<2',
'pandas>=1.0,<2',
'protobuf>=3.13,<4',
'pyarrow>=1,<6',
'tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3',
'tensorflow-metadata' + select_constraint(
default='>=1.6.0,<1.7.0',
nightly='>=1.7.0.dev',
default='>=1.7.0,<1.8.0',
nightly='>=1.8.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<3',
'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3',
],
python_requires='>=3.7,<4',
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion tfx_bsl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of tfx_bsl."""

# Note that setup.py uses this version.
__version__ = '1.7.0.dev'
__version__ = '1.8.0.dev'

0 comments on commit 14b46fa

Please sign in to comment.