Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

Commit

Permalink
Add requirements for correct SAN parsing by urllib3
Browse files Browse the repository at this point in the history
  • Loading branch information
caseydavenport committed Oct 13, 2016
1 parent 56ef096 commit 8646c6d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.calico_test
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ MAINTAINER Tom Denham <tom@projectcalico.org>
# We install glibc onto the official docker image (instead of adding docker to
# the libc image) since glibc installs are more constant than the
# docker-in-docker installation and configuration.
RUN apk add --update python python-dev py-pip py-setuptools \
RUN apk add --update python python-dev py-pip py-setuptools openssl-dev libffi-dev \
git musl-dev gcc \
iptables ip6tables iproute2 iputils ipset curl && \
curl -o glibc.apk -L "https://github.com/andyshinn/alpine-pkg-glibc/releases/download/2.23-r1/glibc-2.23-r1.apk" && \
Expand Down
2 changes: 1 addition & 1 deletion build-requirements-frozen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ PyYAML==3.11
requests==2.9.1
six==1.10.0
subprocess32==3.2.7
urllib3==1.14
urllib3==1.18
virtualenv==12.1.1
websocket-client==0.35.0
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
netaddr
python-etcd
subprocess32
pyopenssl
ndg-httpsclient
pyasn1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['netaddr', 'python-etcd>=0.4.3', 'subprocess32'],
install_requires=['netaddr', 'python-etcd>=0.4.3', 'subprocess32',
'pyopenssl', 'ndg-httpsclient', 'pyasn1'],
dependency_links=[
"git+https://github.com/jplana/python-etcd.git@0d0145f5e835aa032c97a0a5e09c4c68b7a03f66#egg=python-etcd-0.4.3"
]
Expand Down

0 comments on commit 8646c6d

Please sign in to comment.