From a68be5c34e21d0e22ed529b4477eac8153997b24 Mon Sep 17 00:00:00 2001 From: Sean Morgan Date: Fri, 7 Feb 2020 10:45:38 -0500 Subject: [PATCH] R0.8.1 (#1042) * Remove dev from version * Add env variables to windows release (#1041) (cherry picked from commit 442eca1b9f064f46fbfad506022c451f1f0e7dd8) * Add env variables to windows release --- .github/workflows/release.yml | 3 +++ tensorflow_addons/version.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a9c6044077..4181fb2fdc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -134,6 +134,9 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Build Windows wheels + env: + TF_NEED_CUDA: 0 + BAZEL_VC: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/" shell: bash run: | python -m pip install wheel setuptools diff --git a/tensorflow_addons/version.py b/tensorflow_addons/version.py index 3330d7454f..c25cb57417 100644 --- a/tensorflow_addons/version.py +++ b/tensorflow_addons/version.py @@ -17,7 +17,7 @@ # We follow Semantic Versioning (https://semver.org/) _MAJOR_VERSION = "0" _MINOR_VERSION = "8" -_PATCH_VERSION = "0" +_PATCH_VERSION = "1" # When building releases, we can update this value on the release branch to # reflect the current release candidate ('rc0', 'rc1') or, finally, the official