From a3a083bb887df65c6868c767599967345c52f6f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Sun, 11 Oct 2020 14:21:45 +0200 Subject: [PATCH] ci: Don't use the master branch of the maturin docker image. --- ci/deploy.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ci/deploy.sh b/ci/deploy.sh index ee73087..e5d8a78 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -2,11 +2,9 @@ docker run \ --env MATURIN_PASSWORD="$MATURIN_PASSWORD" \ - --env PATH=/opt/python/cp37-cp37m/bin/:/opt/python/cp38-cp38/bin/:/root/.cargo/bin:/opt/rh/devtoolset-2/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \ --rm \ -v "$(pwd)":/io \ - konstin2/maturin:master \ + konstin2/maturin \ publish \ - --interpreter python3.7 python3.8 \ --username __token__ \ --password "$MATURIN_PASSWORD"