summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2020-04-09 00:56:42 +0200
committerFederico Caselli <cfederico87@gmail.com>2020-04-09 00:56:42 +0200
commita638cc3c4b67f17a0dc28435242ea1fd8739976a (patch)
tree8143b473871e1df2621950a6d02f74e0010df56e
parentd1369c42bff347a0fa60b19514db1e1d3e207954 (diff)
downloadsqlalchemy-a638cc3c4b67f17a0dc28435242ea1fd8739976a.tar.gz
allow for no spaced near the = in the tag_build
Change-Id: I67b524025467fc2ee1faf34f3fe241a19b9c72f3
-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