Skip to content

Commit

Permalink
Rename files and install local version
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarcireau committed Oct 20, 2023
1 parent 81574b5 commit c1bb956
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ jobs:
with:
name: wheelhouse
path: wheelhouse
- run: python -m pip install --find-links wheelhouse colourtime
- run: ls wheelhouse # @DEV
- run: for file in wheelhouse/*.whl; do mv $file "$(printf "$file" | sed -r 's/^(colourtime)-(\d\.\d\.\d)-(.+)$/\1-\2+local-\3/')"; done
- run: ls wheelhouse # @DEV
- run: python -m pip install --find-links wheelhouse colourtime+local
shell: bash
- run: python -c 'import colourtime'
build_sdist:
Expand Down

0 comments on commit c1bb956

Please sign in to comment.