Skip to content

Commit 85b7db8

Browse files
committed
Relax the install_requires, no need to exact version as long as there
are no broken changes with future versions
1 parent c166f66 commit 85b7db8

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

setup.py

+13-13
Original file line numberDiff line numberDiff line change
@@ -156,24 +156,24 @@
156156
]
157157
},
158158
install_requires=[
159-
'click==7.0',
160-
'ipaddress==1.0.23',
161-
'jsondiff==1.2.0',
162-
'jsonpatch==1.32.0',
163-
'm2crypto==0.31.0',
164-
'natsort==6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2
165-
'netaddr==0.8.0',
166-
'netifaces==0.10.7',
167-
'pexpect==4.8.0',
168-
'pyroute2==0.5.14',
169-
'requests==2.25.0',
159+
'click>=7.0',
160+
'ipaddress>=1.0.23',
161+
'jsondiff>=1.2.0',
162+
'jsonpatch>=1.32.0',
163+
'm2crypto>=0.31.0',
164+
'natsort>=6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2
165+
'netaddr>=0.8.0',
166+
'netifaces>=0.10.7',
167+
'pexpect>=4.8.0',
168+
'pyroute2>=0.5.14',
169+
'requests>=2.25.0',
170170
'sonic-config-engine',
171171
'sonic-platform-common',
172172
'sonic-py-common',
173173
'sonic-yang-mgmt',
174174
'swsssdk>=2.0.1',
175-
'tabulate==0.8.2',
176-
'xmltodict==0.12.0',
175+
'tabulate>=0.8.2',
176+
'xmltodict>=0.12.0',
177177
],
178178
setup_requires= [
179179
'pytest-runner',

0 commit comments

Comments
 (0)