Skip to content

Commit

Permalink
Relax the install_requires, no need to exact version as long as there…
Browse files Browse the repository at this point in the history
… are no broken changes with future versions (sonic-net#1530)

Fixes sonic-net/sonic-buildimage#7152

Relax the install_requires
  • Loading branch information
qiluo-msft committed May 5, 2021
1 parent efa0924 commit cbcfb9a
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,21 +152,20 @@
},
install_requires=[
'click==7.0',
'ipaddress==1.0.23',
'jsondiff==1.2.0',
'm2crypto==0.31.0',
'natsort==6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2
'netaddr==0.8.0',
'netifaces==0.10.7',
'pexpect==4.8.0',
'requests==2.25.0',
'ipaddress>=1.0.23',
'jsondiff>=1.2.0',
'm2crypto>=0.31.0',
'natsort>=6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2
'netaddr>=0.8.0',
'netifaces>=0.10.7',
'pexpect>=4.8.0',
'requests>=2.25.0',
'sonic-platform-common',
'sonic-py-common',
'sonic-yang-mgmt',
'swsssdk>=2.0.1',
'tabulate==0.8.2',
'xmltodict==0.12.0',
'deepdiff==5.2.3',
'tabulate>=0.8.2',
'xmltodict>=0.12.0',
],
setup_requires= [
'pytest-runner',
Expand Down

0 comments on commit cbcfb9a

Please sign in to comment.