Skip to content

Commit

Permalink
Fairness Indicators and Tensorboard Plugin 0.44.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 529211619
  • Loading branch information
rtg0795 authored and Responsible ML Infra Team committed May 3, 2023
1 parent 614e1c9 commit 3b279ed
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 14 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ other *untested* combinations may also work.

|fairness-indicators | tensorflow | tensorflow-data-validation | tensorflow-model-analysis |
|-------------------------------------------------------------------------------------------|--------------------|----------------------------|---------------------------|
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.12.0 | 0.43.0 |
|[v0.43.0](https://github.com/tensorflow/fairness-indicators/blob/v0.42.0/RELEASE.md) | 2.11 | 1.12.0 | 0.43.0 |
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.13.0 | 0.44.0 |
|[v0.44.0](https://github.com/tensorflow/fairness-indicators/blob/v0.44.0/RELEASE.md) | 2.12 | 1.13.0 | 0.44.0 |
|[v0.43.0](https://github.com/tensorflow/fairness-indicators/blob/v0.43.0/RELEASE.md) | 2.11 | 1.12.0 | 0.43.0 |
|[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 |
|[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 |
|[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 |
Expand Down
16 changes: 16 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,27 @@

## Bug Fixes and Other Changes

## Breaking Changes

## Deprecations

# Version 0.44.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Depends on `tensorflow>=2.12.0,<2.13`.
* Depends on `tensorflow-data-validation>=1.13.0,<1.14.0`.
* Depends on `tensorflow-model-analysis>=0.44,<0.45`.
* Depends on `protobuf>=3.20.3,<5`.

## Breaking Changes

* N/A

## Deprecations

* Deprecating python3.7 support.
Expand Down
2 changes: 1 addition & 1 deletion fairness_indicators/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of Fairness Indicators."""

# Note that setup.py uses this version.
__version__ = '0.44.0.dev'
__version__ = '0.45.0.dev'
6 changes: 3 additions & 3 deletions g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@
"!pip install -q -U pip==20.2\n",
"\n",
"!pip install -q -U \\\n",
" tensorflow-model-analysis==0.43.0 \\\n",
" tensorflow-data-validation==1.12.0 \\\n",
" tfx-bsl==1.12.0"
" tensorflow-model-analysis==0.44.0 \\\n",
" tensorflow-data-validation==1.13.0 \\\n",
" tfx-bsl==1.13.0"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ def select_constraint(default, nightly=None, git_master=None):
'tensorflow>=2.12.0,<2.13',
'tensorflow-hub>=0.8.0,<1.0.0',
'tensorflow-data-validation' + select_constraint(
default='>=1.12.0,<1.13.0',
nightly='>=1.13.0.dev',
default='>=1.13.0,<1.14.0',
nightly='>=1.14.0.dev',
git_master='@git+https://github.com/tensorflow/data-validation@master'),
'tensorflow-model-analysis' + select_constraint(
default='>=0.43,<0.44',
nightly='>=0.44.0.dev',
default='>=0.44,<0.45',
nightly='>=0.45.0.dev',
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
'witwidget>=1.4.4,<2',
'protobuf>=3.20.3,<5',
Expand Down
3 changes: 2 additions & 1 deletion tensorboard_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ other *untested* combinations may also work.
|tensorboard-pluginn | tensorflow | tensorflow-model-analysis |
|-------------------------------------------------------------------------------------------------------------|---------------|---------------------------|
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.43.0 |
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.44.0 |
|[v0.44.0](https://github.com/tensorflow/fairness-indicators/blob/v0.44.0/tensorboard_plugin/README.md) | 2.12.0 | 0.44.0 |
|[v0.43.0](https://github.com/tensorflow/fairness-indicators/blob/v0.43.0/tensorboard_plugin/README.md) | 2.11.0 | 0.43.0 |
|[v0.42.0](https://github.com/tensorflow/fairness-indicators/blob/v0.42.0/tensorboard_plugin/README.md) | 2.10.0 | 0.42.0 |
|[v0.41.0](https://github.com/tensorflow/fairness-indicators/blob/v0.41.0/tensorboard_plugin/README.md) | 2.9.0 | 0.41.0 |
Expand Down
4 changes: 2 additions & 2 deletions tensorboard_plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ def select_constraint(default, nightly=None, git_master=None):
'tensorboard>=2.8.0,<3',
'tensorflow>=2.12,<3',
'tensorflow-model-analysis' + select_constraint(
default='>=0.43,<0.44',
nightly='>=0.44.0.dev',
default='>=0.44,<0.45',
nightly='>=0.45.0.dev',
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
'werkzeug<2'
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,26 @@

## Bug Fixes and Other Changes

## Breaking Changes

## Deprecations

# Version 0.44.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Depends on `tensorflow>=2.12,<2.13`.
* Depends on tensorflow-model-analysis>=0.44,<0.45.
* Depends on `protobuf>=3.20.3,<5`.

## Breaking Changes

* N/A

## Deprecations

* Deprecating python3.7 support.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"""Contains the version string of Fairness Indicators Tensorboard Plugin."""

# Note that setup.py uses this version.
__version__ = '0.44.0.dev'
__version__ = '0.45.0.dev'

0 comments on commit 3b279ed

Please sign in to comment.