From a19c2e7cc7953519134779bd5df8661f731348c9 Mon Sep 17 00:00:00 2001 From: Alexandre Marcireau Date: Wed, 1 Nov 2023 08:48:12 +1100 Subject: [PATCH] Add support for versions without a patch --- .github/workflows/build_wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index d683e2a..ebee5ce 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -52,7 +52,7 @@ jobs: name: wheelhouse path: wheelhouse - run: ls wheelhouse # @DEV - - run: for file in *.whl; do mv $file "$(printf "$file" | sed -r 's/^(colourtime)-(\d\.\d\.\d)-(.+)$/\1-\2+local-\3/')"; done + - run: for file in *.whl; do mv $file "$(printf "$file" | sed -r 's/^(colourtime)-(\d\.\d\.\d|\d\.\d)-(.+)$/\1-\2+local-\3/')"; done working-directory: wheelhouse - run: ls wheelhouse # @DEV - run: python -m pip install --find-links wheelhouse colourtime+local