Skip to content

Commit 6bbac76

Browse files
andylou2tfx-copybara
authored andcommitted
Prepare for struct2tensor 0.0.1 release.
PiperOrigin-RevId: 304227849
1 parent f159b47 commit 6bbac76

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

RELEASE.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# `struct2tensor` release notes
2+
3+
## Current Version(Still in Development)
4+
5+
### Major Features and Improvements
6+
7+
### Bug Fixes and Other Changes
8+
9+
### Breaking Changes
10+
11+
### Deprecations
12+
13+
## Release 0.21.0
14+
15+
### Major Features and Improvements
16+
17+
* Parquet dataset that can apply expressions to a parquet schema, allowing for
18+
reading data from IO to tensors directly.
19+
20+
### Bug Fixes and Other Changes
21+
22+
* Now requires tensorflow>=2.1.0,<2.2.
23+
24+
### Breaking Changes
25+
26+
### Deprecations
27+
28+
## Release 0.0.1dev6
29+
30+
* Initial release of struct2tensor.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ def has_ext_modules(self):
5858
# Contained modules and scripts.
5959
packages=find_packages(),
6060
install_requires=[
61-
'protobuf>=3.8.0',
62-
'tensorflow>=1.15,<3',
63-
'tensorflow_metadata>=0.13.0',
61+
'protobuf>=3.8.0,<4',
62+
'tensorflow>=2.1.0,<2.2',
63+
'tensorflow_metadata>=0.21,<0.22',
6464
'pyarrow>=0.15,<1',
6565
],
6666
# Add in any packaged data.

struct2tensor/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"""Contains the version string of struct2tensor."""
1616

1717
# Note that setup.py uses this version.
18-
__version__ = '0.0.1.dev6'
18+
__version__ = '0.21.0'

0 commit comments

Comments
 (0)