Skip to content

Commit

Permalink
fix: Make dev version of the Python SDK PEP440 compatible (#7525)
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Tang <terrytangyuan@gmail.com>
  • Loading branch information
terrytangyuan authored Jan 8, 2022
1 parent 26c1224 commit b476c4a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sdks/python/client/argo_workflows/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdks/python/client/argo_workflows/api_client.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdks/python/client/argo_workflows/configuration.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdks/python/client/setup.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdks/python/sdk_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
UNTAGGED = 'untagged'

FAILED = 'FAILED' # indicator captured by the makefile to know when something failed
UNTAGGED_VERSION = '0.0.0-latest'
UNTAGGED_VERSION = '0.0.0-pre'
git_tag_cmd = 'git describe --exact-match --tags --abbrev=0 2> /dev/null || echo untagged'
try:
git_tag = os.popen(git_tag_cmd).read().strip()
Expand Down

0 comments on commit b476c4a

Please sign in to comment.