summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/create-wheels.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/create-wheels.yaml b/.github/workflows/create-wheels.yaml
index 21ab6cfb9..d3005a2bb 100644
--- a/.github/workflows/create-wheels.yaml
+++ b/.github/workflows/create-wheels.yaml
@@ -63,7 +63,7 @@ jobs:
# `-replace` uses a regexp match
# alternative form: `(get-content setup.cfg) | foreach-object{$_ -replace "tag_build.=.dev",""} | set-content setup.cfg`
run: |
- (cat setup.cfg) | %{$_ -replace "tag_build.=.dev",""} | set-content setup.cfg
+ (cat setup.cfg) | %{$_ -replace "tag_build.?=.?dev",""} | set-content setup.cfg
- name: Create wheel
# create the wheel using --no-use-pep517 since locally we have pyproject
@@ -174,7 +174,7 @@ jobs:
# `-replace` uses a regexp match
# alternative form: `(get-content setup.cfg) | foreach-object{$_ -replace "tag_build.=.dev",""} | set-content setup.cfg`
run: |
- (cat setup.cfg) | %{$_ -replace "tag_build.=.dev",""} | set-content setup.cfg
+ (cat setup.cfg) | %{$_ -replace "tag_build.?=.?dev",""} | set-content setup.cfg
- name: Create python PEP 425 tag for manylinux build
id: linux-py-version