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

Commit

Permalink
Add new requirements for correct SAN parsing by urllib3
Browse files Browse the repository at this point in the history
  • Loading branch information
caseydavenport committed Oct 12, 2016
1 parent 8219a60 commit 04d0c3f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 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 @@ -11,6 +11,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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
# 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.2', 'subprocess32'],

install_requires=['netaddr', 'python-etcd>=0.4.2', 'subprocess32',
'pyopenssl', 'ndg-httpsclient', 'pyasn1'],
)

0 comments on commit 04d0c3f

Please sign in to comment.