Skip to content

Commit

Permalink
chore: Configure setuptools to produce py3-tagged wheels (#178)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
webknjaz authored Nov 6, 2024
1 parent d680ac6 commit 7d924ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 7d924ea

Please sign in to comment.