pjz
pjz

Reputation: 43057

How do I fix "error: error in setup.cfg: command 'bdist_wheel' has no such option 'universal'"

When doing python setup.py bdist_wheel I got an error:

error: error in setup.cfg: command 'bdist_wheel' has no such option 'universal'

How do I fix this?

Upvotes: 1

Views: 2658

Answers (1)

pjz
pjz

Reputation: 43057

Turns out my wheel package was out of date (v0.22 isn't new enough). A quick pip install --upgrade wheel and it built happily.

Before I figured that out, though, I'd spent a fruitless half hour upgrading pip and setuptools and python-distutils-extra.

Upvotes: 2

Related Questions