Skip to content

Commit

Permalink
Merge pull request #471 from tensorflow/master
Browse files Browse the repository at this point in the history
[fix] only upload wheel with tf 2.16.2 due to pip limitation
  • Loading branch information
jq authored Sep 23, 2024
2 parents 4d73318 + cff0518 commit bfd611e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ jobs:
# TODO: add back 'Windows' when it can be compiled.
os: ['macOS', 'Linux']
py-version: ['3.8', '3.9', '3.10', '3.11']
tf-version: ['2.15.1', '2.16.2']
# only one TF version is allowed for pip
tf-version: ['2.16.2']
tf-need-cuda: ['0', '1']
cpu: ['x86', 'arm64']
exclude:
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_recommenders_addons/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def is_arm64():
# 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
Expand Down

0 comments on commit bfd611e

Please sign in to comment.