File tree Expand file tree Collapse file tree 2 files changed +24
-8
lines changed Expand file tree Collapse file tree 2 files changed +24
-8
lines changed Original file line number Diff line number Diff line change @@ -978,14 +978,20 @@ See :source:`Mac/README.rst`.
978978
979979 Options:
980980
981- * ``universal2 `` (x86-64 and arm64; supports ``universal2 `` wheels);
982- * ``32-bit `` (PPC and i386; supports ``fat `` wheels);
983- * ``64-bit `` (PPC64 and x86-64; supports ``fat64 `` wheels);
984- * ``3-way `` (i386, PPC and x86-64; supports ``fat3 `` wheels);
985- * ``intel `` (i386 and x86-64; supports ``intel `` wheels);
986- * ``intel-32 `` (i386; supports ``i386 `` wheels);
987- * ``intel-64 `` (x86-64; supports ``x86_64 `` wheels);
988- * ``all `` (PPC, i386, PPC64 and x86-64; supports ``universal `` wheels).
981+ * ``universal2 `` (x86-64 and arm64);
982+ * ``32-bit `` (PPC and i386);
983+ * ``64-bit `` (PPC64 and x86-64);
984+ * ``3-way `` (i386, PPC and x86-64);
985+ * ``intel `` (i386 and x86-64);
986+ * ``intel-32 `` (i386);
987+ * ``intel-64 `` (x86-64);
988+ * ``all `` (PPC, i386, PPC64 and x86-64).
989+
990+ Note that values for this configuration item are *not * the same as the
991+ identifiers used for universal binary wheels on macOS. See the Python
992+ Packaging User Guide for details on the `packaging platform compatibility
993+ tags used on macOS
994+ <https://packaging.python.org/en/latest/specifications/platform-compatibility-tags/#macos> `_
989995
990996.. option :: --with-framework-name=FRAMEWORK
991997
Original file line number Diff line number Diff line change @@ -200,6 +200,16 @@ a ``python3.x-32`` binary and use the value of ``sys.executable`` as the
200200Likewise, use ``python3.x-intel64 `` to force execution in ``x86_64 `` mode
201201with ``universal2 `` binaries.
202202
203+ 3. How do I specify binary universal wheels
204+ -------------------------------------------
205+
206+ Binary wheels can also be universal. The platform tag name used to identify
207+ universal binary wheels differs from the naming scheme used when configuring a
208+ universal build with ``--with-universal-archs ``. See the Python Packaging User
209+ Guide for details on the `packaging platform compatibility tags used on macOS
210+ <https://packaging.python.org/en/latest/specifications/platform-compatibility-tags/#macos> `_.
211+
212+
203213Building and using a framework-based Python on macOS
204214====================================================
205215
You can’t perform that action at this time.
0 commit comments