diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2019-09-28 13:32:33 -0700 |
---|---|---|
committer | José Padilla <jpadilla@webapplicate.com> | 2019-09-28 16:32:33 -0400 |
commit | 1256a68de68464b3ae606f0ec2c03601ab1ea25c (patch) | |
tree | 035ffc42068ab98e0bbff6ab0b924f86ab34b81a | |
parent | 12eaf0057e431e77ddba34715d138986e7039030 (diff) | |
download | pyjwt-1256a68de68464b3ae606f0ec2c03601ab1ea25c.tar.gz |
Rename [wheel] section to [bdist_wheel] as the former is legacy (#441)
Fixes warning when running the `python3 setup.py bdist_wheel` command:
The [wheel] section is deprecated. Use [bdist_wheel] instead.
For additional details, see:
https://github.com/pypa/wheel/blob/d2f5b43c866295de7b3963da9fd049f1ca4b1194/wheel/bdist_wheel.py#L124-L131
https://pythonwheels.com/
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ exclude = docs/, .tox/ -[wheel] +[bdist_wheel] universal = 1 [tool:pytest] |