Skip to content

Commit

Permalink
trying to fix scm autoversioning for macos pyuda wheel builds
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-dixon committed Apr 15, 2024
1 parent 7804676 commit 9eabbde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/wrappers/python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ ext = Extension(
def get_version():
version = '@PROJECT_VERSION@'
if version.count('.') > 2:
version = "Post.".join(s.rsplit('.', 1))
version = ".Post".join(version.rsplit('.', 1))
print("setup version = %s" % version)
return version

Expand Down

0 comments on commit 9eabbde

Please sign in to comment.