Skip to content

Commit

Permalink
Bump version ID so it will upload to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Apr 2, 2024
1 parent 664f134 commit ef7014d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@ jobs:
repository-url: https://test.pypi.org/legacy/
user: __token__
password: ${{ secrets.TESTPYPIPW }}
verbose: true
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ def get_ep_version_string(repository_root_dir: Path) -> str:
version_major = findall(r'CMAKE_VERSION_MAJOR (\d+)', version_contents)[0]
version_minor = findall(r'CMAKE_VERSION_MINOR (\d+)', version_contents)[0]
version_patch = findall(r'CMAKE_VERSION_PATCH (\d+)', version_contents)[0]
return f"{version_major}.{version_minor}.{version_patch}"
build_increment = 1
return f"{version_major}.{version_minor}.{version_patch}.{build_increment}" # TODO: Determine good numbering


def get_current_wheel_details():
Expand Down

0 comments on commit ef7014d

Please sign in to comment.