From 446c5639ca47ef1c7c0f85032622e820faf32613 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 18 Nov 2025 20:34:49 +0200 Subject: [PATCH] Remove Python 2 advice --- index.html | 5 ----- 1 file changed, 5 deletions(-) diff --git a/index.html b/index.html index e178d6f..5a5c954 100644 --- a/index.html +++ b/index.html @@ -82,11 +82,6 @@
pip install wheel
…and when you'd normally run python setup.py sdist, run instead python setup.py sdist bdist_wheel. For a more in-depth explanation, see this guide on sharing your labor of love.
Note: If your project is Python 2 and 3 compatible you can create a universal wheel distribution. Create a file called setup.cfg with the following content and upload your package.
-[bdist_wheel] -universal = 1-
Warning: If your project has optional C extensions, it is recommended not to publish a universal wheel, because pip will prefer the wheel over a source installation.
Note: To include your project's license file in the wheel distribution, specify the license_files key in the [metadata] section. This helps comply with many open source licenses that require the license text to be included in every distributable artifact of the project. This option requires wheel 0.32 or newer.
[metadata]