Skip to content

Commit 9120766

Browse files
authored
Relax the install_requires, no need to exact version as long as there are no broken changes with future versions (#1530)
#### What I did Fixes sonic-net/sonic-buildimage#7152 #### How I did it Relax the install_requires
1 parent 2e09b22 commit 9120766

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

setup.py

+21-21
Original file line numberDiff line numberDiff line change
@@ -161,32 +161,32 @@
161161
},
162162
install_requires=[
163163
'click==7.0',
164-
'click-log==0.3.2',
165-
'docker==4.4.4',
166-
'docker-image-py==0.1.10',
167-
'filelock==3.0.12',
168-
'enlighten==1.8.0',
169-
'ipaddress==1.0.23',
170-
'jinja2==2.11.3',
171-
'jsondiff==1.2.0',
172-
'jsonpatch==1.32.0',
173-
'm2crypto==0.31.0',
174-
'natsort==6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2
175-
'netaddr==0.8.0',
176-
'netifaces==0.10.7',
177-
'pexpect==4.8.0',
178-
'poetry-semver==0.1.0',
179-
'prettyprinter==0.18.0',
180-
'pyroute2==0.5.14',
181-
'requests==2.25.0',
164+
'click-log>=0.3.2',
165+
'docker>=4.4.4',
166+
'docker-image-py>=0.1.10',
167+
'filelock>=3.0.12',
168+
'enlighten>=1.8.0',
169+
'ipaddress>=1.0.23',
170+
'jinja2>=2.11.3',
171+
'jsondiff>=1.2.0',
172+
'jsonpatch>=1.32.0',
173+
'm2crypto>=0.31.0',
174+
'natsort>=6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2
175+
'netaddr>=0.8.0',
176+
'netifaces>=0.10.7',
177+
'pexpect>=4.8.0',
178+
'poetry-semver>=0.1.0',
179+
'prettyprinter>=0.18.0',
180+
'pyroute2>=0.5.14',
181+
'requests>=2.25.0',
182182
'sonic-config-engine',
183183
'sonic-platform-common',
184184
'sonic-py-common',
185185
'sonic-yang-mgmt',
186186
'swsssdk>=2.0.1',
187-
'tabulate==0.8.2',
188-
'www-authenticate==0.9.2',
189-
'xmltodict==0.12.0',
187+
'tabulate>=0.8.2',
188+
'www-authenticate>=0.9.2',
189+
'xmltodict>=0.12.0',
190190
],
191191
setup_requires= [
192192
'pytest-runner',

0 commit comments

Comments
 (0)