Skip to content

Commit 6b7e5e6

Browse files
authored
Adding google-cloud-bigquery dependency and TFMA 0.32.1 patch release (#135)
* Update setup.py * Update RELEASE.md * Update README.md * Update version.py * Update package.json * Update install.md
1 parent 4ea7d16 commit 6b7e5e6

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ combinations may also work.
186186
|tensorflow-model-analysis |apache-beam[gcp]|pyarrow |tensorflow |tensorflow-metadata |tfx-bsl |
187187
|------------------------------------------------------------------------------------ |----------------|----------|-------------------|--------------------|----------|
188188
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | 1.1.0 |
189+
|[0.32.1](https://github.com/tensorflow/model-analysis/blob/v0.32.1/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | 1.1.1 |
189190
|[0.32.0](https://github.com/tensorflow/model-analysis/blob/v0.32.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | 1.1.0 |
190191
|[0.31.0](https://github.com/tensorflow/model-analysis/blob/v0.31.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | 1.0.0 |
191192
|[0.30.0](https://github.com/tensorflow/model-analysis/blob/v0.30.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.30.0 | 0.30.0 |

RELEASE.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
# Version 0.32.0
1+
# Version 0.32.1
22

33
## Major Features and Improvements
44

55
* N/A
66

77
## Bug fixes and other Changes
88

9-
* Depends on `protobuf>=3.13,<4`.
10-
* Depends on `tensorflow-metadata>=1.1.0,<1.2.0`.
11-
* Depends on `tfx-bsl>=1.1.0,<1.2.0`.
9+
* Depends on `google-cloud-bigquery>=1.28.0,<2.21`.
10+
* Depends on `tfx-bsl>=1.1.1,<1.2.0`.
1211

1312
## Breaking Changes
1413

g3doc/install.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ combinations may also work.
153153
tensorflow-model-analysis | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
154154
------------------------------------------------------------------------------------ | ---------------- | ------- | ----------------- | ------------------- | -------
155155
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | 1.1.0
156+
[0.32.1](https://github.com/tensorflow/model-analysis/blob/v0.32.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | 1.1.1
156157
[0.32.0](https://github.com/tensorflow/model-analysis/blob/v0.32.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | 1.1.0
157158
[0.31.0](https://github.com/tensorflow/model-analysis/blob/v0.31.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | 1.0.0
158159
[0.30.0](https://github.com/tensorflow/model-analysis/blob/v0.30.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.30.0 | 0.30.0

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ def select_constraint(default, nightly=None, git_master=None):
292292
# Sort alphabetically
293293
'absl-py>=0.9,<0.13',
294294
'apache-beam[gcp]>=2.29,<3',
295+
'google-cloud-bigquery>=1.28.0,<2.21',
295296
'ipython>=7,<8',
296297
'ipywidgets>=7,<8',
297298
'numpy>=1.16,<1.20',
@@ -306,7 +307,7 @@ def select_constraint(default, nightly=None, git_master=None):
306307
nightly='>=1.2.0.dev',
307308
git_master='@git+https://github.com/tensorflow/metadata@master'),
308309
'tfx-bsl' + select_constraint(
309-
default='>=1.1.0,<1.2.0',
310+
default='>=1.1.1,<1.2.0',
310311
nightly='>=1.2.0.dev',
311312
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
312313
],

tensorflow_model_analysis/notebook/jupyter/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tensorflow_model_analysis",
3-
"version": "0.32.0",
3+
"version": "0.32.1",
44
"homepage": "https://github.com/tensorflow/model-analysis",
55
"bugs": "https://github.com/tensorflow/model-analysis/issues",
66
"license": "Apache-2.0",

tensorflow_model_analysis/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
# Version string for this release of TFMA.
1818
# Note that setup.py reads and uses this version.
19-
VERSION = '0.32.0'
19+
VERSION = '0.32.1'

0 commit comments

Comments
 (0)