You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Change the platform tag part of the wheel filename to `macosx_11_xxx` (means to support macOS 11)
213
+
# Change the platform tag part of the wheel filename to `macosx_11_0_xxx` (means to support macOS 11.0 and above)
214
214
# See https://packaging.python.org/en/latest/specifications/binary-distribution-format/#file-format
215
215
# A wheel package file will only be selected by pip to install if the platform tag satisfies, regardless of whether the binary compatibility actually is.
216
216
# Otherwise, pip would fallback to compile from the source distribution.
217
217
run: |
218
218
for file in *.whl; do
219
-
mv "$file" "$(echo "$file" | sed 's/macosx_[0-9]\+/macosx_11/')";
219
+
mv "$file" "$(echo "$file" | sed 's/macosx_[0-9]\+_[0-9]\+/macosx_11_0/')";
0 commit comments