john-kurkowski / tldextract

Accurately separates a URL’s subdomain, domain, and public suffix, using the Public Suffix List (PSL).
BSD 3-Clause "New" or "Revised" License
1.81k stars 211 forks source link

Remove py2 tag from wheel #245

Closed hugovk closed 2 years ago

hugovk commented 2 years ago

Universal wheels are for supporting Python 2 and 3, and adds the unnecessary py2 tag to the wheel metadata and filename:

https://pypi.org/project/tldextract/3.1.2/#files

https://wheel.readthedocs.io/en/stable/user_guide.html#building-wheels

john-kurkowski commented 2 years ago

Confirmed from the PyPA's docs on packaging! Thanks!