Skip to content

Commit fe075aa

Browse files
s0undt3chdwoz
authored andcommitted
Distro is now a hard dependency
Refs #55310 Refs #55835
1 parent d750d86 commit fe075aa

File tree

23 files changed

+96
-136
lines changed

23 files changed

+96
-136
lines changed

.pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,8 @@ allowed-3rd-party-modules=msgpack,
684684
pytest,
685685
setuptools,
686686
pytestsalt,
687-
saltfactories
687+
saltfactories,
688+
distro
688689

689690

690691
[EXCEPTIONS]

doc/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ def inner(fn, *iargs, **ikwargs): # pylint: disable=unused-argument
9494
"Crypto.Random",
9595
"Crypto.Signature",
9696
"Crypto.Signature.PKCS1_v1_5",
97+
"distro",
9798
"M2Crypto",
9899
"msgpack",
99100
"yaml",

pkg/osx/req.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ cffi==1.12.2
55
CherryPy==17.4.1
66
click==7.0
77
cryptography==2.6.1
8+
distro==1.5.0
89
gitpython==2.1.15
910
idna==2.8
1011
ipaddress==1.0.22

pkg/windows/req.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ certifi
44
cffi==1.12.2
55
CherryPy==17.4.1
66
cryptography==2.6.1
7-
distro==1.4.0
7+
distro==1.5.0
88
idna==2.8
99
ioloop==0.1a0
1010
ipaddress==1.0.22
@@ -19,7 +19,7 @@ pyasn1==0.4.5
1919
pycparser==2.19
2020
pycryptodomex==3.9.7
2121
pycurl==7.43.0.5
22-
pymssql==2.1.4
22+
pymssql==2.1.4 ; python_version < "3.8"
2323
PyMySQL==0.9.3
2424
pyopenssl==19.0.0
2525
python-dateutil==2.8.0

requirements/base.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@ msgpack>=0.5,!=0.5.5,<1.0.0
33
PyYAML
44
MarkupSafe
55
requests>=1.0.0
6-
# Requirements for Tornado 4.5.3 (vendored as salt.ext.tornado)
7-
singledispatch==3.4.0.3; python_version < '3.4'
8-
# Required by Tornado to handle threads stuff.
6+
distro

requirements/static/py3.5/darwin.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ contextlib2==0.5.5 # via cherrypy
3131
croniter==0.3.29
3232
cryptography==2.6.1
3333
distlib==0.3.0 # via virtualenv
34+
distro==1.5.0
3435
dnspython==1.16.0
3536
docker-pycreds==0.4.0 # via docker
3637
docker==3.7.2

requirements/static/py3.5/linux.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ cherrypy==17.3.0
2626
contextlib2==0.5.5 # via cherrypy
2727
croniter==0.3.29
2828
cryptography==2.6.1 # via moto, paramiko, pyopenssl, vcert
29+
distro==1.5.0
2930
dnspython==1.16.0
3031
docker-pycreds==0.4.0 # via docker
3132
docker==3.7.2

requirements/static/py3.5/windows.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cherrypy==17.4.1
2424
colorama==0.4.1 # via pytest
2525
contextlib2==0.5.5 # via cherrypy
2626
cryptography==2.6.1
27-
distro==1.4.0
27+
distro==1.5.0
2828
dmidecode==0.9.0
2929
dnspython==1.16.0
3030
docker-pycreds==0.4.0 # via docker
@@ -73,7 +73,7 @@ pycryptodome==3.8.1 # via python-jose
7373
pycryptodomex==3.9.7
7474
pycurl==7.43.0.5
7575
pygit2==0.28.2 ; python_version < "3.8"
76-
pymssql==2.1.4
76+
pymssql==2.1.4 ; python_version < "3.8"
7777
pymysql==0.9.3
7878
pyopenssl==19.0.0
7979
pyparsing==2.4.5 # via packaging

requirements/static/py3.6/darwin.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ contextlib2==0.5.5 # via cherrypy
3131
croniter==0.3.29
3232
cryptography==2.6.1
3333
distlib==0.3.0 # via virtualenv
34+
distro==1.5.0
3435
dnspython==1.16.0
3536
docker-pycreds==0.4.0 # via docker
3637
docker==3.7.2

requirements/static/py3.6/linux.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ cherrypy==17.3.0
2626
contextlib2==0.5.5 # via cherrypy
2727
croniter==0.3.29
2828
cryptography==2.6.1 # via moto, paramiko, pyopenssl, vcert
29+
distro==1.5.0
2930
dnspython==1.16.0
3031
docker-pycreds==0.4.0 # via docker
3132
docker==3.7.2

0 commit comments

Comments
 (0)