From 548eaec9969c4a2d140cd586f50e6f7c838ca3da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sviatoslav=20Sydorenko=20=28=D0=A1=D0=B2=D1=8F=D1=82=D0=BE?= =?UTF-8?q?=D1=81=D0=BB=D0=B0=D0=B2=20=D0=A1=D0=B8=D0=B4=D0=BE=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=29?= Date: Tue, 5 Nov 2024 18:36:14 +0100 Subject: [PATCH] Configure `setuptools` to produce `py3`-tagged wheels Previously, the wheels published to PyPI were being tagged with `py2.py3` implying Python 2 support, despite having `Require-Python: >= 3.7` in the core metadata: https://pypi.org/project/resolvelib/1.1.0/#files. This patch fixes that, forcing the build tool chain to produce wheels only having the `py3` tag in their filenames. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3622199..5c4f50f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,7 +53,7 @@ find = {where = ["src"], namespaces = false} version = {attr = "resolvelib.__version__"} [tool.distutils.bdist_wheel] -universal = true +universal = false # `py3` only tag [tool.towncrier] package = 'resolvelib'