Skip to content

Commit dbab14d

Browse files
Fairness Indicators and Tensorboard Plugin 0.26.0 Releases
PiperOrigin-RevId: 347941554
1 parent 3d18a03 commit dbab14d

File tree

8 files changed

+48
-13
lines changed

8 files changed

+48
-13
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) | 0.25.0 | 0.25.0 |
88+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 0.26.0 | 0.26.0 |
89+
|[v0.26.0](https://github.com/tensorflow/fairness-indicators/blob/v0.26.0/RELEASE.md) | 1.15.2 / 2.3 | 0.26.0 | 0.26.0 |
8990
|[v0.25.0](https://github.com/tensorflow/fairness-indicators/blob/v0.25.0/RELEASE.md) | 1.15.2 / 2.3 | 0.25.0 | 0.25.0 |
9091
|[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 |
9192
|[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 |

RELEASE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
## Major Features and Improvements
66

7+
## Bug fixes and other changes
8+
9+
## Breaking changes
10+
11+
## Deprecations
12+
13+
# Version 0.26.0
14+
15+
## Major Features and Improvements
16+
717
* Sorting fairness metrics table rows to keep slices in order with slice drop
818
down in the UI.
919

@@ -13,6 +23,9 @@
1323
* Table now displays 3 decimal places instead of 2.
1424
* Fix the bug that metric list won't refresh if the input eval result changed.
1525
* Remove d3-tip dependency.
26+
* Depends on `tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.4.*,<3`.
27+
* Depends on `tensorflow-data-validation>=0.26,<0.27`.
28+
* Depends on `tensorflow-model-analysis>=0.26,<0.27`.
1629

1730
## Breaking changes
1831

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.26.0.dev'
17+
__version__ = '0.27.0.dev'

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ def select_constraint(default, nightly=None, git_master=None):
3333
return default
3434

3535
REQUIRED_PACKAGES = [
36-
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,<3',
36+
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.4.*,<3',
3737
'tensorflow-data-validation' + select_constraint(
38-
default='>=0.25,<0.26',
39-
nightly='>=0.26.0.dev',
38+
default='>=0.26,<0.27',
39+
nightly='>=0.27.0.dev',
4040
git_master='@git+https://github.com/tensorflow/data-validation@master'),
4141
'tensorflow-model-analysis' + select_constraint(
42-
default='>=0.25,<0.26',
43-
nightly='>=0.26.0.dev',
42+
default='>=0.26,<0.27',
43+
nightly='>=0.27.0.dev',
4444
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
4545
'witwidget>=1.4.4,<2',
4646
]

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.25.0 |
104+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.26.0 |
105+
|[v0.26.0](https://github.com/tensorflow/fairness-indicators/blob/v0.26.0/tensorboard_plugin/README.md) | 2.3.0 | 0.26.0 |
105106
|[v0.25.0](https://github.com/tensorflow/fairness-indicators/blob/v0.25.0/tensorboard_plugin/README.md) | 2.3.0 | 0.25.0 |
106107
|[v0.24.0](https://github.com/tensorflow/fairness-indicators/blob/v0.24.0/tensorboard_plugin/README.md) | 2.3.0 | 0.24.0 |
107108
|[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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ def select_constraint(default, nightly=None, git_master=None):
3838

3939
REQUIRED_PACKAGES = [
4040
'protobuf>=3.6.0,<4',
41-
'tensorboard>=2.3.0,<3',
42-
'tensorflow>=2.3.0,<3',
41+
'tensorboard>=2.3.0,!=2.4.*,<3',
42+
'tensorflow>=2.3.0,!=2.4.*,<3',
4343
'tensorflow-model-analysis' + select_constraint(
44-
default='>=0.25,<0.26',
45-
nightly='>=0.26.0.dev',
44+
default='>=0.26,<0.27',
45+
nightly='>=0.27.0.dev',
4646
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
4747
]
4848

tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md

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

1111
## Deprecations
1212

13+
# Version 0.26.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug fixes and other changes
20+
21+
* Depends on `tensorboard>=2.3.0,!=2.4.*,<3`.
22+
* Depends on `tensorflow>=2.3.0,!=2.4.*,<3`.
23+
* Depends on `tensorflow-model-analysis>=0.26,<0.27`.
24+
25+
## Breaking changes
26+
27+
* N/A
28+
29+
## Deprecations
30+
31+
* N/A
32+
1333
# Version 0.25.0
1434

1535
## 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.26.0.dev'
18+
__version__ = '0.27.0.dev'

0 commit comments

Comments
 (0)