Skip to content

Commit

Permalink
[setup.py] Add 'wheel' to 'setup_requires' (sonic-net#160)
Browse files Browse the repository at this point in the history
Add 'wheel' to the list of packages required for building the package. This way it will be implicitly installed at build time, preventing the need to intstall the 'wheel' package explicitly in our build environment.
  • Loading branch information
jleveque authored Sep 22, 2020
1 parent 1a2b62a commit 5957460
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
setup(
name='asyncsnmp',
install_requires=dependencies,
setup_requires=["pytest-runner"],
setup_requires= [
'pytest-runner',
'wheel'
],
tests_require=test_deps,
version='2.1.0',
packages=find_packages('src'),
Expand Down

0 comments on commit 5957460

Please sign in to comment.