Skip to content

Commit

Permalink
Struct2Tensor 0.46.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 627423146
  • Loading branch information
tfx-copybara committed Apr 23, 2024
1 parent e6e9794 commit ec19386
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![PyPI](https://badge.fury.io/py/struct2tensor.svg)](https://badge.fury.io/py/struct2tensor)

<!--*
freshness: { owner: 'iindyk' reviewed: '2022-04-27' }
freshness: { owner: 'iindyk' reviewed: '2024-04-22' }
*-->

## Introduction
Expand Down Expand Up @@ -115,6 +115,7 @@ is an integer.

struct2tensor | tensorflow
---------------------------------------------------------------------- | ----------
[0.46.0](https://github.com/google/struct2tensor/releases/tag/v0.46.0) | 2.15.0
[0.45.0](https://github.com/google/struct2tensor/releases/tag/v0.45.0) | 2.13.0
[0.44.0](https://github.com/google/struct2tensor/releases/tag/v0.44.0) | 2.12.0
[0.43.0](https://github.com/google/struct2tensor/releases/tag/v0.43.0) | 2.11.0
Expand Down
14 changes: 14 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@

## Bug Fixes and Other Changes

## Breaking Changes

## Deprecations

# Version 0.46.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Bumped the Ubuntu version on which `struct2tensor` is tested to 20.04
(previously was 16.04).
* Depends on `tensorflow~=2.15.0`.
Expand All @@ -15,6 +27,8 @@

## Breaking Changes

* N/A

## Deprecations

* Deprecated python 3.8 support.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ def select_constraint(default, nightly=None, git_master=None):
'protobuf>=3.20.3,<5;python_version<"3.11"',
'tensorflow~=2.15',
'tensorflow-metadata' + select_constraint(
default='>=1.14.0,<1.15.0',
nightly='>=1.15.0.dev',
default='>=1.15.0,<1.16.0',
nightly='>=1.16.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'pyarrow>=10,<11',
],
Expand Down
2 changes: 1 addition & 1 deletion struct2tensor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"""Contains the version string of struct2tensor."""

# Note that setup.py uses this version.
__version__ = '0.46.0.dev'
__version__ = '0.47.0.dev'
4 changes: 2 additions & 2 deletions struct2tensor/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ def struct2tensor_workspace():
urls = ["https://github.com/apache/arrow/archive/%s.zip" % ARROW_COMMIT],
)

_TFMD_COMMIT_HASH = "7073f7452d6cecbb5279781451f7c3144c924367" # 1.14.0
_TFMD_COMMIT_HASH = "47aaaa7aa820fd8a865babcfddbdafe11ec92a25" # 1.15.0
http_archive(
name = "com_github_tensorflow_metadata",
sha256 = "e1140d1cb5c4c244e1af8fc54447ef3f912fdee4fd49ff273e330914e93031b8",
sha256 = "39697919990afb427282c4a2bd6bb3da6d0cdd7434b0d3137e3f8d40e66b7dbe",
strip_prefix = "metadata-%s" % _TFMD_COMMIT_HASH,
urls = [
"https://github.com/tensorflow/metadata/archive/%s.tar.gz" % _TFMD_COMMIT_HASH,
Expand Down

0 comments on commit ec19386

Please sign in to comment.