Skip to content

Commit

Permalink
release: support python 3.10 vendorised builds
Browse files Browse the repository at this point in the history
  • Loading branch information
abn committed Feb 10, 2022
1 parent a7c8744 commit a22937a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,20 @@ wheel:

linux_release:
docker pull quay.io/pypa/manylinux2010_x86_64:2021-02-06-3d322a5
docker pull quay.io/pypa/manylinux2010_x86_64:2022-02-05-4cb577c
docker run --rm -i -v `pwd`:/io \
-e PYTHON=/opt/python/cp38-cp38/bin/python \
-e PYTHON27=/opt/python/cp27-cp27m/bin/python \
-e PYTHON35=/opt/python/cp35-cp35m/bin/python \
quay.io/pypa/manylinux2010_x86_64:2021-02-06-3d322a5 sh -c "cd /io && ./make-nix-release.sh"
docker run --rm -i -v `pwd`:/io \
-e PYTHON=/opt/python/cp38-cp38/bin/python \
-e PYTHON36=/opt/python/cp36-cp36m/bin/python \
-e PYTHON37=/opt/python/cp37-cp37m/bin/python \
-e PYTHON38=/opt/python/cp38-cp38/bin/python \
-e PYTHON39=/opt/python/cp39-cp39/bin/python \
quay.io/pypa/manylinux2010_x86_64:2021-02-06-3d322a5 sh -c "cd /io && ./make-nix-release.sh"
-e PYTHON310=/opt/python/cp310-cp310/bin/python \
quay.io/pypa/manylinux2010_x86_64:2022-02-05-4cb577c sh -c "cd /io && ./make-nix-release.sh"

# run tests against all supported python versions
tox:
Expand Down

0 comments on commit a22937a

Please sign in to comment.