-
Notifications
You must be signed in to change notification settings - Fork 219
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
manylinux2010 fails with old pip 9 #389
Comments
It's the expected behavior, support for manylinux2010 wheels has been added in |
|
thanks! Its surprisingly non-trivial to upgrade pip3 on Ubuntu 18.04 in a way that works OOTB (say in a CI environment). Here's what's I'm doing in my .gitlab-ci.yml file in case this helps someone who finds her way here: before_script:
- apt-get update
- DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata curl
- - pip3 install pymupdf
+ - pip3 install --upgrade pip
+ - which pip3
+ - python3 -m pip -V
+ - python3 -m pip install pymupdf update: keywords for search engines:
So instead I do |
From glancing at #179 (second crossed out bullet point) I suspect this might be the intended behaviour, but my understanding here is low, so I'll file this just in case...
On Ubuntu 18.04, one has rather old pip:
With this, I get
...-manylinux1_x86_64.whl
then it "works".Is this intended? Seems to me, Ubuntu 18.04 is going to be around as a docker-based and in VM contexts for quite some time...
The text was updated successfully, but these errors were encountered: