Skip to content

Commit 4df676b

Browse files
fix
1 parent ba3a25a commit 4df676b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -715,9 +715,9 @@ jobs:
715715
Rename wheels from linux to manylinux
716716
# proper solution would be to use auditwheel but it seems to bundle a libedit dll we dont want
717717
run: |
718-
for wheel in dist/*linux.whl; do
718+
for wheel in dist/*linux*.whl; do
719719
if [ -f "$wheel" ]; then
720-
new_wheel=$(echo "$wheel" | sed 's/linux/manylinux/')
720+
new_wheel=$(echo "$wheel" | sed 's/linux/manylinux2014/')
721721
echo "Renaming: $(basename "$wheel") -> $(basename "$new_wheel")"
722722
mv "$wheel" "$new_wheel"
723723
fi

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "6.0.0.0rc3"
1+
__version__ = "6.0.0.0rc4"

0 commit comments

Comments
 (0)