Skip to content

Commit

Permalink
setup.cfg: let python-tag mirror python_requires
Browse files Browse the repository at this point in the history
In order to generate a wheel in accordance with PEP 425 to restrict the
minimum required version of Python (3.6), the `python-tag` bdist_wheel
option needs to be specified so the wheel gets tagged properly.

Before:
	zipp-x.x.x-py3-none-any.whl
After:
	zipp-x.x.x-py36-none-any.whl

Signed-off-by: Vincent Fazio <vfazio@xes-inc.com>
  • Loading branch information
vfazio authored and jaraco committed Feb 7, 2020
1 parent 0aa6c5c commit 0b681b0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only

[bdist_wheel]
python-tag=py36

[options]
packages = find:
include_package_data = true
Expand Down

0 comments on commit 0b681b0

Please sign in to comment.