Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[v1.9.x] Fix CD for pypi wheel version #20782

Merged
merged 4 commits into from
Dec 18, 2021
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/pip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
__version__ = libinfo['__version__']

# set by the CD pipeline
is_release = os.environ.get("IS_RELEASE", "").strip()
is_release = (os.environ.get("RELEASE_BUILD", "false").strip().lower() == "true")

# set by the travis build pipeline
travis_tag = os.environ.get("TRAVIS_TAG", "").strip()
Expand Down