Skip to content

Commit 25dde73

Browse files
Fairness Indicators and Tensorboard Plugin 0.24.0 Releases.
PiperOrigin-RevId: 331833484
1 parent a1f6c5c commit 25dde73

File tree

8 files changed

+44
-12
lines changed

8 files changed

+44
-12
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,6 @@ other *untested* combinations may also work.
7171

7272
|fairness-indicators | tensorflow | tensorflow-data-validation | tensorflow-model-analysis |
7373
|-------------------------------------------------------------------------------------------|--------------------|----------------------------|---------------------------|
74-
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 0.23.0 | 0.23.0 |
74+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 0.24.0 | 0.24.0 |
75+
|[v0.24.0](https://github.com/tensorflow/fairness-indicators/blob/v0.24.0/RELEASE.md) | 1.15.2 / 2.3 | 0.24.0 | 0.24.0 |
7576
|[v0.23.0](https://github.com/tensorflow/fairness-indicators/blob/v0.23.0/RELEASE.md) | 1.15.2 / 2.3 | 0.23.0 | 0.23.0 |

fairness_indicators/RELEASE.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,27 @@
44

55
## Major Features and Improvements
66

7+
## Breaking changes
8+
9+
## Deprecations
10+
11+
# Version 0.24.0
12+
13+
## Major Features and Improvements
14+
715
* Made the Fairness Indicators UI thresholds drop down list sorted.
8-
* Fix the bug that Sort menu is not hidden when there is no model comparison.
916

1017
## Bug fixes and other changes
1118

19+
* Fix in the issue where the Sort menu is not hidden when there is no model
20+
comparison.
21+
* Depends on `tensorflow-data-validation>=0.24,<0.25`.
22+
* Depends on `tensorflow-model-analysis>=0.24,<0.25`.
23+
1224
## Breaking changes
1325

26+
* N/A
27+
1428
## Deprecations
1529

1630
* Deprecated Py3.5 support.
@@ -24,8 +38,6 @@
2438
## Bug fixes and other changes
2539

2640
* Fix broken import path in Fairness_Indicators_Example_Colab and Fairness_Indicators_on_TF_Hub_Text_Embeddings.
27-
* Fix confusing error message while rendering evaluation results in TensorBoard
28-
plugin from evaluation output path provided in the URL.
2941

3042
## Breaking changes
3143

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.24.0.dev'
17+
__version__ = '0.25.0.dev'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ def select_constraint(default, git_master=None):
3333
REQUIRED_PACKAGES = [
3434
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,<3',
3535
'tensorflow-data-validation' + select_constraint(
36-
default='>=0.23,<0.24',
36+
default='>=0.24,<0.25',
3737
git_master='@git+https://github.com/tensorflow/data-validation@master'),
3838
'tensorflow-model-analysis' + select_constraint(
39-
default='>=0.23,<0.24',
39+
default='>=0.24,<0.25',
4040
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
4141
'witwidget>=1.4.4,<2',
4242
]
@@ -63,7 +63,7 @@ def select_constraint(default, git_master=None):
6363
package_data={
6464
'fairness_indicators': ['documentation/*'],
6565
},
66-
python_requires='>=3.5,<4',
66+
python_requires='>=3.6,<4',
6767
install_requires=REQUIRED_PACKAGES,
6868
tests_require=REQUIRED_PACKAGES,
6969
# PyPI package information.

tensorboard_plugin/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,6 @@ other *untested* combinations may also work.
8989
9090
|tensorboard-pluginn | tensorflow | tensorflow-model-analysis |
9191
|-------------------------------------------------------------------------------------------------------------|---------------|---------------------------|
92-
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.23.0 |
92+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.24.0 |
93+
|[v0.24.0](https://github.com/tensorflow/fairness-indicators/blob/v0.24.0/tensorboard_plugin/README.md) | 2.3.0 | 0.24.0 |
9394
|[v0.23.0](https://github.com/tensorflow/fairness-indicators/blob/v0.23.0/tensorboard_plugin/README.md) | 2.3.0 | 0.23.0 |

tensorboard_plugin/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def select_constraint(default, git_master=None):
3939
'tensorboard>=2.3.0,<3',
4040
'tensorflow>=2.3.0,<3',
4141
'tensorflow-model-analysis' + select_constraint(
42-
default='>=0.23,<0.24',
42+
default='>=0.24,<0.25',
4343
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
4444
]
4545

@@ -70,7 +70,7 @@ def select_constraint(default, git_master=None):
7070
'fairness_indicators = tensorboard_plugin_fairness_indicators.plugin:FairnessIndicatorsPlugin',
7171
],
7272
},
73-
python_requires='>=3.5,<4',
73+
python_requires='>=3.6,<4',
7474
install_requires=REQUIRED_PACKAGES,
7575
tests_require=REQUIRED_PACKAGES,
7676
classifiers=[

tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@
1010

1111
## Deprecations
1212

13+
# Version 0.24.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug fixes and other changes
20+
21+
* Fix in the error message while rendering evaluation results in
22+
TensorBoard plugin from evaluation output path provided in the URL.
23+
* Depends on `tensorflow-model-analysis>=0.24,<0.25`.
24+
25+
## Breaking changes
26+
27+
* Depends on `tensorflow-model-analysis>=0.23,<0.24`.
28+
29+
## Deprecations
30+
1331
* Deprecating Py3.5 support.
1432

1533
# Version 0.23.0

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.24.0.dev'
18+
__version__ = '0.25.0.dev'

0 commit comments

Comments
 (0)