Skip to content

Commit

Permalink
Remove "universal" configuration from setup.cfg
Browse files Browse the repository at this point in the history
Sphinx is Python-3-only and therefore is not a universal wheel. It
should still distribute a 'py3' wheel, just not a universal one.

From https://wheel.readthedocs.io/en/stable/user_guide.html

> If your project contains no C extensions and is expected to work on
> both Python 2 and 3, you will want to tell wheel to produce universal
> wheels by adding this to your setup.cfg file: …

As Sphinx doesn't work on Python 2, it should not be universal.

Refs #6470
  • Loading branch information
jdufresne authored and tk0miya committed Jun 19, 2019
1 parent 2709cd3 commit 131c93c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ license_file = LICENSE
tag_build = .dev
tag_date = true

[bdist_wheel]
universal = 1

[aliases]
release = egg_info -Db ''
upload = upload --sign --identity=36580288
Expand Down

0 comments on commit 131c93c

Please sign in to comment.