From: Federico Caselli Date: Wed, 8 Apr 2020 22:56:42 +0000 (+0200) Subject: allow for no spaced near the = in the tag_build X-Git-Tag: rel_1_4_0b1~395^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a638cc3c4b67f17a0dc28435242ea1fd8739976a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git allow for no spaced near the = in the tag_build Change-Id: I67b524025467fc2ee1faf34f3fe241a19b9c72f3 --- diff --git a/.github/workflows/create-wheels.yaml b/.github/workflows/create-wheels.yaml index 21ab6cfb97..d3005a2bba 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