Skip to content

Commit 3b279ed

Browse files
rtg0795Responsible ML Infra Team
authored and
Responsible ML Infra Team
committed
Fairness Indicators and Tensorboard Plugin 0.44.0 Release
PiperOrigin-RevId: 529211619
1 parent 614e1c9 commit 3b279ed

File tree

9 files changed

+47
-14
lines changed

9 files changed

+47
-14
lines changed

Diff for: README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,9 @@ 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.12.0 | 0.43.0 |
89-
|[v0.43.0](https://github.com/tensorflow/fairness-indicators/blob/v0.42.0/RELEASE.md) | 2.11 | 1.12.0 | 0.43.0 |
88+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.13.0 | 0.44.0 |
89+
|[v0.44.0](https://github.com/tensorflow/fairness-indicators/blob/v0.44.0/RELEASE.md) | 2.12 | 1.13.0 | 0.44.0 |
90+
|[v0.43.0](https://github.com/tensorflow/fairness-indicators/blob/v0.43.0/RELEASE.md) | 2.11 | 1.12.0 | 0.43.0 |
9091
|[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 |
9192
|[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 |
9293
|[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 |

Diff for: RELEASE.md

+16
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,27 @@
66

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.44.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Depends on `tensorflow>=2.12.0,<2.13`.
22+
* Depends on `tensorflow-data-validation>=1.13.0,<1.14.0`.
23+
* Depends on `tensorflow-model-analysis>=0.44,<0.45`.
1024
* Depends on `protobuf>=3.20.3,<5`.
1125

1226
## Breaking Changes
1327

28+
* N/A
29+
1430
## Deprecations
1531

1632
* Deprecating python3.7 support.

Diff for: fairness_indicators/version.py

+1-1
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.44.0.dev'
17+
__version__ = '0.45.0.dev'

Diff for: g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb

+3-3
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.43.0 \\\n",
98-
" tensorflow-data-validation==1.12.0 \\\n",
99-
" tfx-bsl==1.12.0"
97+
" tensorflow-model-analysis==0.44.0 \\\n",
98+
" tensorflow-data-validation==1.13.0 \\\n",
99+
" tfx-bsl==1.13.0"
100100
]
101101
},
102102
{

Diff for: setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ def select_constraint(default, nightly=None, git_master=None):
4141
'tensorflow>=2.12.0,<2.13',
4242
'tensorflow-hub>=0.8.0,<1.0.0',
4343
'tensorflow-data-validation' + select_constraint(
44-
default='>=1.12.0,<1.13.0',
45-
nightly='>=1.13.0.dev',
44+
default='>=1.13.0,<1.14.0',
45+
nightly='>=1.14.0.dev',
4646
git_master='@git+https://github.com/tensorflow/data-validation@master'),
4747
'tensorflow-model-analysis' + select_constraint(
48-
default='>=0.43,<0.44',
49-
nightly='>=0.44.0.dev',
48+
default='>=0.44,<0.45',
49+
nightly='>=0.45.0.dev',
5050
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
5151
'witwidget>=1.4.4,<2',
5252
'protobuf>=3.20.3,<5',

Diff for: tensorboard_plugin/README.md

+2-1
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.43.0 |
104+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.44.0 |
105+
|[v0.44.0](https://github.com/tensorflow/fairness-indicators/blob/v0.44.0/tensorboard_plugin/README.md) | 2.12.0 | 0.44.0 |
105106
|[v0.43.0](https://github.com/tensorflow/fairness-indicators/blob/v0.43.0/tensorboard_plugin/README.md) | 2.11.0 | 0.43.0 |
106107
|[v0.42.0](https://github.com/tensorflow/fairness-indicators/blob/v0.42.0/tensorboard_plugin/README.md) | 2.10.0 | 0.42.0 |
107108
|[v0.41.0](https://github.com/tensorflow/fairness-indicators/blob/v0.41.0/tensorboard_plugin/README.md) | 2.9.0 | 0.41.0 |

Diff for: tensorboard_plugin/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def select_constraint(default, nightly=None, git_master=None):
4646
'tensorboard>=2.8.0,<3',
4747
'tensorflow>=2.12,<3',
4848
'tensorflow-model-analysis' + select_constraint(
49-
default='>=0.43,<0.44',
50-
nightly='>=0.44.0.dev',
49+
default='>=0.44,<0.45',
50+
nightly='>=0.45.0.dev',
5151
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
5252
'werkzeug<2'
5353
]

Diff for: tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md

+15
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,26 @@
66

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.44.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Depends on `tensorflow>=2.12,<2.13`.
22+
* Depends on tensorflow-model-analysis>=0.44,<0.45.
1023
* Depends on `protobuf>=3.20.3,<5`.
1124

1225
## Breaking Changes
1326

27+
* N/A
28+
1429
## Deprecations
1530

1631
* Deprecating python3.7 support.

Diff for: tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py

+1-1
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.44.0.dev'
18+
__version__ = '0.45.0.dev'

0 commit comments

Comments
 (0)