Skip to content

Commit bfd611e

Browse files
authored
Merge pull request #471 from tensorflow/master
[fix] only upload wheel with tf 2.16.2 due to pip limitation
2 parents 4d73318 + cff0518 commit bfd611e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ jobs:
186186
# TODO: add back 'Windows' when it can be compiled.
187187
os: ['macOS', 'Linux']
188188
py-version: ['3.8', '3.9', '3.10', '3.11']
189-
tf-version: ['2.15.1', '2.16.2']
189+
# only one TF version is allowed for pip
190+
tf-version: ['2.16.2']
190191
tf-need-cuda: ['0', '1']
191192
cpu: ['x86', 'arm64']
192193
exclude:

tensorflow_recommenders_addons/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def is_arm64():
3737
# We follow Semantic Versioning (https://semver.org/)
3838
_MAJOR_VERSION = "0"
3939
_MINOR_VERSION = "8"
40-
_PATCH_VERSION = "0"
40+
_PATCH_VERSION = "1"
4141

4242
# When building releases, we can update this value on the release branch to
4343
# reflect the current release candidate ('rc0', 'rc1') or, finally, the official

0 commit comments

Comments
 (0)