Skip to content

Commit 94b8c9b

Browse files
committed
Remove cryptography > 3 support
- Added the incompatiblity of cryptography to the dockerfile. - 1.3.10 broke dependencies because the docker didn't pull the project constraints. - Added a constraints specific for python2 users, other can continue using the python3 one. This should allow: - Making sure further version's docker stay compatible - easier maintenance of python2 vs python3 compatibility. This does not fix forward compatiblity with cryptography, but at least make the current build work.
1 parent fd4f597 commit 94b8c9b

7 files changed

+331
-45
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ FROM python:2.7-alpine
22

33
RUN apk update && apk add --no-cache python-dev gcc git g++ make libffi-dev openssl-dev libxml2 libxml2-dev libxslt libxslt-dev
44

5-
#
5+
#
66
# NOTE(mmitchell): Mimick -onbuild using -alpine image.
77
# ONBUILD statements removed because this is an actual Dockerfile
88
#
99
RUN mkdir -p /usr/src/app
1010
WORKDIR /usr/src/app
1111

12-
COPY requirements.txt /usr/src/app/
13-
RUN pip install --no-cache-dir -r requirements.txt
12+
COPY requirements.txt constraints-py27.txt /usr/src/app/
13+
RUN pip install --no-cache-dir -r requirements.txt -c constraints-py27.txt
1414

1515
COPY . /usr/src/app
1616
#

constraints-py27.txt

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
#
2+
# This file is autogenerated by pip-compile
3+
# To update, run:
4+
#
5+
# pip-compile --no-emit-trusted-host --no-index --output-file=constraints-py27.txt requirements.txt
6+
#
7+
-e git+https://github.com/stephanerobert/tftpy.git@master#egg=tftpy
8+
# via -r requirements.txt
9+
appdirs==1.4.4
10+
# via twisted
11+
cffi==1.14.5
12+
# via cryptography
13+
constantly==15.1.0
14+
# via twisted
15+
contextlib2==0.6.0.post1
16+
# via
17+
# importlib-resources
18+
# zipp
19+
cryptography==2.9.2 ; python_version < "3"
20+
# via
21+
# -r requirements.txt
22+
# twisted
23+
enum34==1.1.10
24+
# via cryptography
25+
importlib-resources==3.3.1
26+
# via netaddr
27+
incremental==21.3.0
28+
# via twisted
29+
ipaddress==1.0.23
30+
# via cryptography
31+
lxml==4.6.3
32+
# via -r requirements.txt
33+
netaddr==0.8.0
34+
# via -r requirements.txt
35+
pathlib2==2.3.5
36+
# via importlib-resources
37+
pyasn1==0.4.8
38+
# via twisted
39+
pycparser==2.20
40+
# via cffi
41+
scandir==1.10.0
42+
# via pathlib2
43+
singledispatch==3.6.1
44+
# via importlib-resources
45+
six==1.16.0
46+
# via
47+
# cryptography
48+
# pathlib2
49+
# singledispatch
50+
twisted[conch]==16.6.0
51+
# via -r requirements.txt
52+
typing==3.10.0.0
53+
# via importlib-resources
54+
zipp==1.2.0
55+
# via importlib-resources
56+
zope.interface==5.4.0
57+
# via twisted
58+
59+
# The following packages are considered to be unsafe in a requirements file:
60+
# setuptools

constraints.txt

+34-14
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,40 @@
22
# This file is autogenerated by pip-compile
33
# To update, run:
44
#
5-
# pip-compile --no-index --no-emit-trusted-host --output-file constraints.txt requirements.txt
5+
# pip-compile --no-emit-trusted-host --no-index --output-file=constraints.txt requirements.txt
66
#
77
-e git+https://github.com/stephanerobert/tftpy.git@master#egg=tftpy
8-
appdirs==1.4.3 # via twisted
9-
asn1crypto==0.24.0 # via cryptography
10-
cffi==1.11.5 # via cryptography
11-
constantly==15.1.0 # via twisted
12-
cryptography==2.3.1 # via twisted
13-
idna==2.7 # via cryptography
14-
incremental==17.5.0 # via twisted
15-
lxml==4.2.5
16-
netaddr==0.7.19
17-
pyasn1==0.4.4 # via twisted
18-
pycparser==2.19 # via cffi
19-
six==1.11.0 # via cryptography
8+
# via -r requirements.txt
9+
appdirs==1.4.4
10+
# via twisted
11+
cffi==1.14.5
12+
# via cryptography
13+
constantly==15.1.0
14+
# via twisted
15+
cryptography==2.9.2 ; python_version == "3.5"
16+
# via
17+
# -r requirements.txt
18+
# twisted
19+
importlib-resources==3.2.1
20+
# via netaddr
21+
incremental==21.3.0
22+
# via twisted
23+
lxml==4.6.3
24+
# via -r requirements.txt
25+
netaddr==0.8.0
26+
# via -r requirements.txt
27+
pyasn1==0.4.8
28+
# via twisted
29+
pycparser==2.20
30+
# via cffi
31+
six==1.16.0
32+
# via cryptography
2033
twisted[conch]==16.6.0
21-
zope.interface==4.5.0 # via twisted
34+
# via -r requirements.txt
35+
zipp==1.2.0
36+
# via importlib-resources
37+
zope.interface==5.4.0
38+
# via twisted
39+
40+
# The following packages are considered to be unsafe in a requirements file:
41+
# setuptools

requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
-e git+https://github.com/stephanerobert/tftpy.git@master#egg=tftpy
2+
cryptography<3; python_version<'3'
3+
cryptography<3; python_version=='3.5'
24
netaddr>=0.7.13
35
Twisted[conch]>=16.6.0, <17.0
46
lxml>=3.7

test-constraints-py27.txt

+130
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
#
2+
# This file is autogenerated by pip-compile
3+
# To update, run:
4+
#
5+
# pip-compile --no-emit-trusted-host --no-index --output-file=test-constraints-py27.txt constraints-py27.txt test-requirements.txt
6+
#
7+
-e git+https://github.com/stephanerobert/tftpy.git@master#egg=tftpy
8+
# via -r constraints-py27.txt
9+
appdirs==1.4.4
10+
# via
11+
# -r constraints-py27.txt
12+
# twisted
13+
bcrypt==3.1.7
14+
# via paramiko
15+
cffi==1.14.5
16+
# via
17+
# -r constraints-py27.txt
18+
# bcrypt
19+
# cryptography
20+
# pynacl
21+
constantly==15.1.0
22+
# via
23+
# -r constraints-py27.txt
24+
# twisted
25+
contextlib2==0.6.0.post1
26+
# via
27+
# -r constraints-py27.txt
28+
# importlib-resources
29+
# zipp
30+
cryptography==2.9.2 ; python_version < "3"
31+
# via
32+
# -r constraints-py27.txt
33+
# paramiko
34+
# twisted
35+
enum34==1.1.10
36+
# via
37+
# -r constraints-py27.txt
38+
# cryptography
39+
flexmock==0.10.4
40+
# via -r test-requirements.txt
41+
funcsigs==1.0.2
42+
# via mock
43+
importlib-resources==3.3.1
44+
# via
45+
# -r constraints-py27.txt
46+
# netaddr
47+
incremental==21.3.0
48+
# via
49+
# -r constraints-py27.txt
50+
# twisted
51+
ipaddress==1.0.23
52+
# via
53+
# -r constraints-py27.txt
54+
# cryptography
55+
lxml==4.6.3
56+
# via
57+
# -r constraints-py27.txt
58+
# ncclient
59+
mock==3.0.5
60+
# via -r test-requirements.txt
61+
ncclient==0.6.10
62+
# via -r test-requirements.txt
63+
netaddr==0.8.0
64+
# via
65+
# -r constraints-py27.txt
66+
# pyeapi
67+
nose==1.3.7
68+
# via -r test-requirements.txt
69+
paramiko==2.7.2
70+
# via ncclient
71+
pathlib2==2.3.5
72+
# via
73+
# -r constraints-py27.txt
74+
# importlib-resources
75+
pexpect==4.8.0
76+
# via -r test-requirements.txt
77+
ptyprocess==0.7.0
78+
# via pexpect
79+
pyasn1==0.4.8
80+
# via
81+
# -r constraints-py27.txt
82+
# twisted
83+
pycparser==2.20
84+
# via
85+
# -r constraints-py27.txt
86+
# cffi
87+
pyeapi==0.8.4
88+
# via -r test-requirements.txt
89+
pyhamcrest==1.10.1
90+
# via -r test-requirements.txt
91+
pynacl==1.4.0
92+
# via paramiko
93+
scandir==1.10.0
94+
# via
95+
# -r constraints-py27.txt
96+
# pathlib2
97+
selectors2==2.0.2
98+
# via ncclient
99+
singledispatch==3.6.1
100+
# via
101+
# -r constraints-py27.txt
102+
# importlib-resources
103+
six==1.16.0
104+
# via
105+
# -r constraints-py27.txt
106+
# bcrypt
107+
# cryptography
108+
# mock
109+
# ncclient
110+
# pathlib2
111+
# pyhamcrest
112+
# pynacl
113+
# singledispatch
114+
twisted[conch]==16.6.0
115+
# via -r constraints-py27.txt
116+
typing==3.10.0.0
117+
# via
118+
# -r constraints-py27.txt
119+
# importlib-resources
120+
zipp==1.2.0
121+
# via
122+
# -r constraints-py27.txt
123+
# importlib-resources
124+
zope.interface==5.4.0
125+
# via
126+
# -r constraints-py27.txt
127+
# twisted
128+
129+
# The following packages are considered to be unsafe in a requirements file:
130+
# setuptools

test-constraints.txt

+85-25
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,93 @@
22
# This file is autogenerated by pip-compile
33
# To update, run:
44
#
5-
# pip-compile --no-index --no-emit-trusted-host --output-file test-constraints.txt test-requirements.txt constraints.txt
5+
# pip-compile --no-emit-trusted-host --no-index --output-file=test-constraints.txt constraints.txt test-requirements.txt
66
#
77
-e git+https://github.com/stephanerobert/tftpy.git@master#egg=tftpy
8-
appdirs==1.4.3
9-
asn1crypto==0.24.0
10-
bcrypt==3.1.4 # via paramiko
11-
cffi==1.11.5
8+
# via -r constraints.txt
9+
appdirs==1.4.4
10+
# via
11+
# -r constraints.txt
12+
# twisted
13+
bcrypt==3.1.7
14+
# via paramiko
15+
cffi==1.14.5
16+
# via
17+
# -r constraints.txt
18+
# bcrypt
19+
# cryptography
20+
# pynacl
1221
constantly==15.1.0
13-
cryptography==2.3.1
14-
flexmock==0.10.2
15-
idna==2.7
16-
incremental==17.5.0
17-
lxml==4.2.5
18-
mock==2.0.0
19-
ncclient==0.6.3
20-
netaddr==0.7.19
22+
# via
23+
# -r constraints.txt
24+
# twisted
25+
cryptography==2.9.2 ; python_version == "3.5"
26+
# via
27+
# -r constraints.txt
28+
# paramiko
29+
# twisted
30+
flexmock==0.10.4
31+
# via -r test-requirements.txt
32+
importlib-resources==3.2.1
33+
# via
34+
# -r constraints.txt
35+
# netaddr
36+
incremental==21.3.0
37+
# via
38+
# -r constraints.txt
39+
# twisted
40+
lxml==4.6.3
41+
# via
42+
# -r constraints.txt
43+
# ncclient
44+
mock==3.0.5
45+
# via -r test-requirements.txt
46+
ncclient==0.6.10
47+
# via -r test-requirements.txt
48+
netaddr==0.8.0
49+
# via
50+
# -r constraints.txt
51+
# pyeapi
2152
nose==1.3.7
22-
paramiko==2.4.2 # via ncclient
23-
pbr==4.3.0 # via mock
24-
pexpect==4.6.0
25-
ptyprocess==0.6.0 # via pexpect
26-
pyasn1==0.4.4
27-
pycparser==2.19
28-
pyeapi==0.8.2
29-
pyhamcrest==1.9.0
30-
pynacl==1.3.0 # via paramiko
31-
selectors2==2.0.1 # via ncclient
32-
six==1.11.0
53+
# via -r test-requirements.txt
54+
paramiko==2.7.2
55+
# via ncclient
56+
pexpect==4.8.0
57+
# via -r test-requirements.txt
58+
ptyprocess==0.7.0
59+
# via pexpect
60+
pyasn1==0.4.8
61+
# via
62+
# -r constraints.txt
63+
# twisted
64+
pycparser==2.20
65+
# via
66+
# -r constraints.txt
67+
# cffi
68+
pyeapi==0.8.4
69+
# via -r test-requirements.txt
70+
pyhamcrest==2.0.2
71+
# via -r test-requirements.txt
72+
pynacl==1.4.0
73+
# via paramiko
74+
six==1.16.0
75+
# via
76+
# -r constraints.txt
77+
# bcrypt
78+
# cryptography
79+
# mock
80+
# ncclient
81+
# pynacl
3382
twisted[conch]==16.6.0
34-
zope.interface==4.5.0
83+
# via -r constraints.txt
84+
zipp==1.2.0
85+
# via
86+
# -r constraints.txt
87+
# importlib-resources
88+
zope.interface==5.4.0
89+
# via
90+
# -r constraints.txt
91+
# twisted
92+
93+
# The following packages are considered to be unsafe in a requirements file:
94+
# setuptools

0 commit comments

Comments
 (0)