summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorMilas Bowman <milas.bowman@docker.com>2022-07-27 14:44:36 -0400
committerGitHub <noreply@github.com>2022-07-27 14:44:36 -0400
commitda62a2883715e15f8b83ab0e9a073b3655a2d456 (patch)
tree0a00a5d76805233e46f9f687ab3b12dba9a53c0b /Jenkinsfile
parent0ee9f260e48992d04d72c7bb8e4819f6b6a64717 (diff)
downloaddocker-py-da62a2883715e15f8b83ab0e9a073b3655a2d456.tar.gz
deps: test on Python 3.10 by default (#3010)
* Upgrade to latest Sphinx / recommonmark * Small CSS fix for issue in new version of Alabaster theme * Fix `Makefile` target for macOS Signed-off-by: Milas Bowman <milas.bowman@docker.com>
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index f524ae7..f9431ea 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -25,7 +25,7 @@ def buildImages = { ->
imageDindSSH = "${imageNameBase}:sshdind-${gitCommit()}"
withDockerRegistry(credentialsId:'dockerbuildbot-index.docker.io') {
buildImage(imageDindSSH, "-f tests/Dockerfile-ssh-dind .", "")
- buildImage(imageNamePy3, "-f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .", "py3.7")
+ buildImage(imageNamePy3, "-f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .", "py3.10")
}
}
}
@@ -70,7 +70,7 @@ def runTests = { Map settings ->
throw new Exception("Need Docker version to test, e.g.: `runTests(dockerVersion: '19.03.12')`")
}
if (!pythonVersion) {
- throw new Exception("Need Python version being tested, e.g.: `runTests(pythonVersion: 'py3.7')`")
+ throw new Exception("Need Python version being tested, e.g.: `runTests(pythonVersion: 'py3.x')`")
}
{ ->