Skip to content

Commit 51d4e40

Browse files
venkat2469Responsible ML Infra Team
authored and
Responsible ML Infra Team
committed
Fairness Indicators and Tensorboard Plugin 0.42.0 Release
PiperOrigin-RevId: 490293614
1 parent 6991237 commit 51d4e40

File tree

9 files changed

+54
-19
lines changed

9 files changed

+54
-19
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ other *untested* combinations may also work.
8585

8686
|fairness-indicators | tensorflow | tensorflow-data-validation | tensorflow-model-analysis |
8787
|-------------------------------------------------------------------------------------------|--------------------|----------------------------|---------------------------|
88-
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.10.0 | 0.41.0 |
88+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.11.0 | 0.42.0 |
89+
|[v0.42.0](https://github.com/tensorflow/fairness-indicators/blob/v0.42.0/RELEASE.md) | 1.15.5 / 2.10 | 1.11.0 | 0.42.0 |
8990
|[v0.41.0](https://github.com/tensorflow/fairness-indicators/blob/v0.41.0/RELEASE.md) | 1.15.5 / 2.9 | 1.10.0 | 0.41.0 |
9091
|[v0.40.0](https://github.com/tensorflow/fairness-indicators/blob/v0.40.0/RELEASE.md) | 1.15.5 / 2.9 | 1.9.0 | 0.40.0 |
9192
|[v0.39.0](https://github.com/tensorflow/fairness-indicators/blob/v0.39.0/RELEASE.md) | 1.15.5 / 2.8 | 1.8.0 | 0.39.0 |

RELEASE.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,35 @@
22

33
# Current Version (Still in Development)
44

5+
## Major Features and Improvements
6+
7+
## Bug Fixes and Other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.42.0
14+
15+
## Major Features and Improvements
16+
517
* This is the last version that supports TensorFlow 1.15.x. TF 1.15.x support
618
will be removed in the next version. Please check the
719
[TF2 migration guide](https://www.tensorflow.org/guide/migrate) to migrate
820
to TF2.
921

10-
## Major Features and Improvements
11-
1222
## Bug Fixes and Other Changes
1323

24+
* N/A
25+
1426
## Breaking Changes
1527

28+
* N/A
29+
1630
## Deprecations
1731

32+
* N/A
33+
1834
# Version 0.41.0
1935

2036
## Major Features and Improvements

fairness_indicators/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"""Contains the version string of Fairness Indicators."""
1515

1616
# Note that setup.py uses this version.
17-
__version__ = '0.42.0.dev'
17+
__version__ = '0.43.0.dev'

g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@
9494
"!pip install -q -U pip==20.2\n",
9595
"\n",
9696
"!pip install -q -U \\\n",
97-
" tensorflow-model-analysis==0.41.0 \\\n",
98-
" tensorflow-data-validation==1.10.0 \\\n",
99-
" tfx-bsl==1.10.0"
97+
" tensorflow-model-analysis==0.42.0 \\\n",
98+
" tensorflow-data-validation==1.11.0 \\\n",
99+
" tfx-bsl==1.11.0"
100100
]
101101
},
102102
{

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ def select_constraint(default, nightly=None, git_master=None):
3838
return default
3939

4040
REQUIRED_PACKAGES = [
41-
'tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3',
41+
'tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,!=2.10.*,<3',
4242
'tensorflow-hub>=0.8.0,<1.0.0',
4343
'tensorflow-data-validation' + select_constraint(
44-
default='>=1.10.0,<1.11.0',
45-
nightly='>=1.11.0.dev',
44+
default='>=1.11.0,<1.12.0',
45+
nightly='>=1.12.0.dev',
4646
git_master='@git+https://github.com/tensorflow/data-validation@master'),
4747
'tensorflow-model-analysis' + select_constraint(
48-
default='>=0.41,<0.42',
49-
nightly='>=0.42.0.dev',
48+
default='>=0.42,<0.43',
49+
nightly='>=0.43.0.dev',
5050
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
5151
'witwidget>=1.4.4,<2',
5252
'protobuf>=3.13,<4',

tensorboard_plugin/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ other *untested* combinations may also work.
101101
102102
|tensorboard-pluginn | tensorflow | tensorflow-model-analysis |
103103
|-------------------------------------------------------------------------------------------------------------|---------------|---------------------------|
104-
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.41.0 |
104+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.42.0 |
105+
|[v0.42.0](https://github.com/tensorflow/fairness-indicators/blob/v0.42.0/tensorboard_plugin/README.md) | 2.10.0 | 0.42.0 |
105106
|[v0.41.0](https://github.com/tensorflow/fairness-indicators/blob/v0.41.0/tensorboard_plugin/README.md) | 2.9.0 | 0.41.0 |
106107
|[v0.40.0](https://github.com/tensorflow/fairness-indicators/blob/v0.40.0/tensorboard_plugin/README.md) | 2.9.0 | 0.40.0 |
107108
|[v0.39.0](https://github.com/tensorflow/fairness-indicators/blob/v0.39.0/tensorboard_plugin/README.md) | 2.8.0 | 0.39.0 |

tensorboard_plugin/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ def select_constraint(default, nightly=None, git_master=None):
4444
REQUIRED_PACKAGES = [
4545
'protobuf>=3.13,<4',
4646
'tensorboard>=2.8.0,<3',
47-
'tensorflow>=2.9,<3',
47+
'tensorflow>=2.10,<3',
4848
'tensorflow-model-analysis' + select_constraint(
49-
default='>=0.41,<0.42',
50-
nightly='>=0.42.0.dev',
49+
default='>=0.42,<0.43',
50+
nightly='>=0.43.0.dev',
5151
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
5252
'werkzeug<2'
5353
]

tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,36 @@
22

33
# Current Version (Still in Development)
44

5+
## Major Features and Improvements
6+
7+
## Bug Fixes and Other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.42.0
14+
15+
## Major Features and Improvements
16+
517
* This is the last version that supports TensorFlow 1.15.x. TF 1.15.x support
618
will be removed in the next version. Please check the
719
[TF2 migration guide](https://www.tensorflow.org/guide/migrate) to migrate
820
to TF2.
921

10-
## Major Features and Improvements
11-
1222
## Bug Fixes and Other Changes
1323

24+
* Depends on tensorflow>=2.10.0,<3.
25+
* Depends on tensorflow-model-analysis>=0.42,<0.43.
26+
1427
## Breaking Changes
1528

29+
* N/A
30+
1631
## Deprecations
1732

33+
* N/A
34+
1835
# Version 0.41.0
1936

2037
## Major Features and Improvements

tensorboard_plugin/tensorboard_plugin_fairness_indicators/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 Fairness Indicators Tensorboard Plugin."""
1616

1717
# Note that setup.py uses this version.
18-
__version__ = '0.42.0.dev'
18+
__version__ = '0.43.0.dev'

0 commit comments

Comments
 (0)