Skip to content

Commit

Permalink
test22
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed Feb 7, 2024
1 parent 5dbdb8f commit 9194e63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-wheels-publish-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
# CIBW_SKIP: cp36-* *-win32 *_i686 pp*
CIBW_SKIP: cp36-* cp37-* cp38-* cp39-* cp310-* *-win32 *_i686 pp*
CIBW_TEST_SKIP: "*-macosx_universal2:arm64"
OPENEXR_VERSION_RELEASE_TYPE: "-${{ github.ref_name }}"
OPENEXR_VERSION_RELEASE_TYPE: "${{ github.ref_name }}"


- name: Upload artifact
Expand Down
3 changes: 2 additions & 1 deletion src/wrappers/python/openexr_skbuild_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ def dynamic_metadata(

if "OPENEXR_VERSION_RELEASE_TYPE" in os.environ:
rt = os.environ["OPENEXR_VERSION_RELEASE_TYPE"]
version += '.' + rt.replace('.','').replace('-','')
# e.g. "v3.1.2-rc4"
version += version[1:]

print("openexr_skbuild_plugin: Computed version: {0}".format(version))

Expand Down

0 comments on commit 9194e63

Please sign in to comment.