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

Add new requirements for correct SAN parsing by urllib3 #153

Merged
merged 1 commit into from
Oct 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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