From 412dd8229c4ddbfc89fba05bf58538ad88de6123 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 19 Jul 2018 15:48:08 -0400 Subject: Make a kit for 3.7 --- tox_wheels.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox_wheels.ini b/tox_wheels.ini index 18715945..12f4a129 100644 --- a/tox_wheels.ini +++ b/tox_wheels.ini @@ -2,7 +2,7 @@ # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt [tox] -envlist = py{26,27,33,34,35,36,sys} +envlist = py{26,27,33,34,35,36,37,sys} toxworkdir = {toxinidir}/.tox_kits [testenv] -- cgit v1.2.1 From a02d03e6e5b8fd7f2c84ea4ba2a8f4213e3ab8df Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 19 Jul 2018 15:58:22 -0400 Subject: Make it easy to get the latest manylinux --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 6174d777..21e8856b 100644 --- a/Makefile +++ b/Makefile @@ -69,6 +69,9 @@ kit: wheel: tox -c tox_wheels.ini $(ARGS) +manylinux_clean: + docker image rm quay.io/pypa/manylinux1_i686 quay.io/pypa/manylinux1_x86_64 + manylinux: docker run -it --init --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh build docker run -it --init --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 /io/ci/manylinux.sh build -- cgit v1.2.1