We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba3a25a commit 4df676bCopy full SHA for 4df676b
2 files changed
.github/workflows/build.yml
@@ -715,9 +715,9 @@ jobs:
715
Rename wheels from linux to manylinux
716
# proper solution would be to use auditwheel but it seems to bundle a libedit dll we dont want
717
run: |
718
- for wheel in dist/*linux.whl; do
+ for wheel in dist/*linux*.whl; do
719
if [ -f "$wheel" ]; then
720
- new_wheel=$(echo "$wheel" | sed 's/linux/manylinux/')
+ new_wheel=$(echo "$wheel" | sed 's/linux/manylinux2014/')
721
echo "Renaming: $(basename "$wheel") -> $(basename "$new_wheel")"
722
mv "$wheel" "$new_wheel"
723
fi
version.py
@@ -1 +1 @@
1
-__version__ = "6.0.0.0rc3"
+__version__ = "6.0.0.0rc4"
0 commit comments