File tree Expand file tree Collapse file tree 3 files changed +34
-4
lines changed
Expand file tree Collapse file tree 3 files changed +34
-4
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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 '
You can’t perform that action at this time.
0 commit comments