Commit a7be385a authored by Jason Madden's avatar Jason Madden

pip cache requires pip 20.1

parent 59478ebb
...@@ -266,7 +266,7 @@ jobs: ...@@ -266,7 +266,7 @@ jobs:
env: DOCKER_IMAGE=quay.io/pypa/manylinux2010_x86_64 env: DOCKER_IMAGE=quay.io/pypa/manylinux2010_x86_64
install: docker pull $DOCKER_IMAGE install: docker pull $DOCKER_IMAGE
script: bash scripts/releases/make-manylinux script: bash scripts/releases/make-manylinux
before_script: pip install -U twine before_script: python -mpip install -U pip twine
- stage: test - stage: test
name: 32-bit manylinux wheels (all Pythons) name: 32-bit manylinux wheels (all Pythons)
...@@ -275,7 +275,7 @@ jobs: ...@@ -275,7 +275,7 @@ jobs:
env: DOCKER_IMAGE=quay.io/pypa/manylinux2010_i686 PRE_CMD=linux32 env: DOCKER_IMAGE=quay.io/pypa/manylinux2010_i686 PRE_CMD=linux32
install: docker pull $DOCKER_IMAGE install: docker pull $DOCKER_IMAGE
script: bash scripts/releases/make-manylinux script: bash scripts/releases/make-manylinux
before_script: pip install -U twine before_script: python -mpip install -U pip twine
# Lint the code. Because this is a separate job, even if it fails fast # Lint the code. Because this is a separate job, even if it fails fast
# the tests will still run. Put it at the top for fast feedback. # the tests will still run. Put it at the top for fast feedback.
......
Add support for Python 3.9. Add support for Python 3.9.
No binary wheels are available yet, however, and one must use a No binary wheels are available yet, however.
greenlet built from current git master.
...@@ -88,6 +88,10 @@ fi ...@@ -88,6 +88,10 @@ fi
# Mount the current directory as /gevent # Mount the current directory as /gevent
# Mount the pip cache directory as /cache # Mount the pip cache directory as /cache
# `pip cache` requires pip 20.1
echo Setting up caching
python --version
python -mpip --version
LCACHE="$(dirname `python -mpip cache dir`)" LCACHE="$(dirname `python -mpip cache dir`)"
echo Sharing pip cache at $LCACHE echo Sharing pip cache at $LCACHE
echo Sharing ccache dir at $HOME/.ccache echo Sharing ccache dir at $HOME/.ccache
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment