-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error: idna 2.6 is installed but idna<2.6,>=2.5 is required by set(['requests']) #1276
Comments
looks like in requirements
which for latest version (0.1.5) https://github.com/sarathsp06/exotel-py/blob/master/requirements.txt is fixing requests to
which has
Interestingly, master version of requests has
On a new virtualenv on ubuntu it installs fine (and it ends up with idna=2.5 + requests==2.18.3) but like you, on a docker image with alpine it's failing trying to use (idna=2.6). hmm |
Pinning idna to 2.5 will fix this problem. I saw on the requests github
page, this was fixed today and merged into master, but a new version hasn't
been released.
…On Aug 9, 2017 8:23 PM, "TiM" ***@***.***> wrote:
looks like in requirements
exotel>=0.1.3',
which for latest version (0.1.5)
https://github.com/sarathsp06/exotel-py/blob/master/requirements.txt
is fixing requests to
requests==2.18.1
which has
'idna>=2.5,<2.6',
Interestingly, master version of requests has
'idna>=2.5,<2.7',
On a new virtualenv on ubuntu it installs fine (and it ends up with
idna=2.5 + requests==2.18.3) but like you, on a docker image with alpine
it's failing trying to use (idna=2.6). hmm
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1276 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADGLjhn0uUGIPrC8k_fykfoyMCeGIIfhks5sWneZgaJpZM4OxT1o>
.
|
I see, thanks, found |
My Dockerfile started failing.
//Install Elastalert.
RUN python setup.py install
Using
ENV ELASTALERT_URL https://github.com/Yelp/elastalert/archive/v0.1.7.zip
But tried various versions of elastalert
Any help or starting places to dig would be appreciated. I tried changing alpine version, tried changing elastalert versions, but either return same error, or in case of older alpine, missing python 2.
The text was updated successfully, but these errors were encountered: