Skip to content
Snippets Groups Projects
Verified Commit 6e90f147 authored by Janis Streib's avatar Janis Streib :owl:
Browse files

FIX: cast post version to int

parent d181064e
No related branches found
No related tags found
No related merge requests found
Pipeline #275788 failed
......@@ -47,7 +47,7 @@ if util_version != latest_previous_util_version and str(largest_ver) == latest_p
setup(
name='netdb_client',
version=f'{str(largest_ver)}{".post" + post_version if post_version is not None else ""}{".dev1" if os.environ.get("CI_COMMIT_BRANCH", "local") == "devel" else ""}+{util_version}',
version=f'{str(largest_ver)}{".post" + str(post_version) if post_version is not None else ""}{".dev1" if os.environ.get("CI_COMMIT_BRANCH", "local") == "devel" else ""}+{util_version}',
author='NETVS-Team <netvs@scc.kit.edu>',
description='This is a meta package to install the automatically generated NET-API definitions for the currently supported API versions.',
url='https://git.scc.kit.edu/scc-net/net-suite/netdb-client-lib',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment