diff --git a/README.md b/README.md index 31cea04f..80b18007 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,8 @@ 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) | 0.29.0 | 0.29.0 | +|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 0.30.0 | 0.30.0 | +|[v0.30.0](https://github.com/tensorflow/fairness-indicators/blob/v0.30.0/RELEASE.md) | 1.15.2 / 2.4 | 0.30.0 | 0.30.0 | |[v0.29.0](https://github.com/tensorflow/fairness-indicators/blob/v0.29.0/RELEASE.md) | 1.15.2 / 2.4 | 0.29.0 | 0.29.0 | |[v0.28.0](https://github.com/tensorflow/fairness-indicators/blob/v0.28.0/RELEASE.md) | 1.15.2 / 2.4 | 0.28.0 | 0.28.0 | |[v0.27.0](https://github.com/tensorflow/fairness-indicators/blob/v0.27.0/RELEASE.md) | 1.15.2 / 2.4 | 0.27.0 | 0.27.0 | diff --git a/RELEASE.md b/RELEASE.md index 067f8a8c..002c5d03 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -10,6 +10,26 @@ ## Deprecations +# Version 0.30.0 + +## Major Features and Improvements + +* N/A + +## Bug Fixes and Other Changes + +* Depends on `tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.5.*,<3`. +* Depends on `tensorflow-data-validation>=0.30,<0.31`. +* Depends on `tensorflow-model-analysis>=0.30,<0.31`. + +## Breaking Changes + +* N/A + +## Deprecations + +* N/A + # Version 0.29.0 ## Major Features and Improvements diff --git a/fairness_indicators/version.py b/fairness_indicators/version.py index 2a997c2f..30cc337e 100644 --- a/fairness_indicators/version.py +++ b/fairness_indicators/version.py @@ -14,4 +14,4 @@ """Contains the version string of Fairness Indicators.""" # Note that setup.py uses this version. -__version__ = '0.30.0.dev' +__version__ = '0.31.0.dev' diff --git a/g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb b/g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb index 39e66c77..5a602248 100644 --- a/g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb +++ b/g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb @@ -94,9 +94,9 @@ "!pip install -q -U pip==20.2\n", "\n", "!pip install -q -U \\\n", - " tensorflow-model-analysis==0.29.0 \\\n", - " tensorflow-data-validation==0.29.0 \\\n", - " tfx-bsl==0.29.0" + " tensorflow-model-analysis==0.30.0 \\\n", + " tensorflow-data-validation==0.30.0 \\\n", + " tfx-bsl==0.30.0" ] }, { diff --git a/setup.py b/setup.py index 628e39cc..b586d33a 100644 --- a/setup.py +++ b/setup.py @@ -33,15 +33,15 @@ def select_constraint(default, nightly=None, git_master=None): return default REQUIRED_PACKAGES = [ - 'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<3', + 'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.5.*,<3', 'tensorflow-hub>=0.8.0,<1.0.0', 'tensorflow-data-validation' + select_constraint( - default='>=0.29,<0.30', - nightly='>=0.30.0.dev', + default='>=0.30,<0.31', + nightly='>=0.31.0.dev', git_master='@git+https://github.com/tensorflow/data-validation@master'), 'tensorflow-model-analysis' + select_constraint( - default='>=0.29,<0.30', - nightly='>=0.30.0.dev', + default='>=0.30,<0.31', + nightly='>=0.31.0.dev', git_master='@git+https://github.com/tensorflow/model-analysis@master'), 'witwidget>=1.4.4,<2', 'protobuf>=3.9.2,<4', diff --git a/tensorboard_plugin/README.md b/tensorboard_plugin/README.md index 6fbaa512..c258b9c9 100644 --- a/tensorboard_plugin/README.md +++ b/tensorboard_plugin/README.md @@ -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.29.0 | +|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.30.0 | +|[v0.30.0](https://github.com/tensorflow/fairness-indicators/blob/v0.30.0/tensorboard_plugin/README.md) | 2.4.0 | 0.30.0 | |[v0.29.0](https://github.com/tensorflow/fairness-indicators/blob/v0.29.0/tensorboard_plugin/README.md) | 2.4.0 | 0.29.0 | |[v0.28.0](https://github.com/tensorflow/fairness-indicators/blob/v0.28.0/tensorboard_plugin/README.md) | 2.4.0 | 0.28.0 | |[v0.27.0](https://github.com/tensorflow/fairness-indicators/blob/v0.27.0/tensorboard_plugin/README.md) | 2.4.0 | 0.27.0 | diff --git a/tensorboard_plugin/setup.py b/tensorboard_plugin/setup.py index 687e28aa..a0caa010 100644 --- a/tensorboard_plugin/setup.py +++ b/tensorboard_plugin/setup.py @@ -38,11 +38,11 @@ def select_constraint(default, nightly=None, git_master=None): REQUIRED_PACKAGES = [ 'protobuf>=3.6.0,<4', - 'tensorboard>=2.4.0,<3', - 'tensorflow>=2.4.0,<3', + 'tensorboard>=2.4.0,!=2.5.*,<3', + 'tensorflow>=2.4.0,!=2.5.*,<3', 'tensorflow-model-analysis' + select_constraint( - default='>=0.29,<0.30', - nightly='>=0.30.0.dev', + default='>=0.30,<0.31', + nightly='>=0.31.0.dev', git_master='@git+https://github.com/tensorflow/model-analysis@master'), ] diff --git a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md index 3ea47e52..61858e73 100644 --- a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md +++ b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md @@ -10,6 +10,26 @@ ## Deprecations +# Version 0.30.0 + +## Major Features and Improvements + +* N/A + +## Bug Fixes and Other Changes + +* Depends on `tensorboard>=2.4.0,!=2.5.*,<3`. +* Depends on `tensorflow>=2.4.0,!=2.5.*,<3`. +* Depends on `tensorflow-model-analysis>=0.30,<0.31`. + +## Breaking Changes + +* N/A + +## Deprecations + +* N/A + # Version 0.29.0 ## Major Features and Improvements diff --git a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py index 27fd1ab7..6236fc47 100644 --- a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py +++ b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py @@ -15,4 +15,4 @@ """Contains the version string of Fairness Indicators Tensorboard Plugin.""" # Note that setup.py uses this version. -__version__ = '0.30.0.dev' +__version__ = '0.31.0.dev'