Skip to content

Commit

Permalink
Add 'wheel' package to 'setup_requires' list (sonic-net#95)
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 install the 'wheel' package explicitly in our build environment.
  • Loading branch information
jleveque authored Sep 22, 2020
1 parent 4fdf975 commit 1aaffcc
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 1 deletion.
3 changes: 3 additions & 0 deletions sonic-ledd/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
scripts=[
'scripts/ledd',
],
setup_requires= [
'wheel'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
Expand Down
3 changes: 3 additions & 0 deletions sonic-pcied/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
scripts=[
'scripts/pcied',
],
setup_requires= [
'wheel'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
Expand Down
3 changes: 3 additions & 0 deletions sonic-psud/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
scripts=[
'scripts/psud',
],
setup_requires= [
'wheel'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
Expand Down
3 changes: 3 additions & 0 deletions sonic-syseepromd/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
scripts=[
'scripts/syseepromd',
],
setup_requires= [
'wheel'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
Expand Down
3 changes: 2 additions & 1 deletion sonic-thermalctld/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
'scripts/thermalctld',
],
setup_requires= [
'pytest-runner'
'pytest-runner',
'wheel'
],
tests_require = [
'pytest',
Expand Down
3 changes: 3 additions & 0 deletions sonic-xcvrd/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
scripts=[
'scripts/xcvrd',
],
setup_requires= [
'wheel'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
Expand Down

0 comments on commit 1aaffcc

Please sign in to comment.