diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-07-20 12:26:51 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-07-20 18:26:51 +0200 |
commit | 36a4d473a19953443362bd9c3ca5d706688d64f1 (patch) | |
tree | 428155072a24975c9ab487c2944894c5b233fce6 | |
parent | 0d6aaf49c1890378ce7ecf741a3a40c859d3b9fb (diff) | |
download | cryptography-36a4d473a19953443362bd9c3ca5d706688d64f1.tar.gz cryptography-36a4d473a19953443362bd9c3ca5d706688d64f1.tar.bz2 cryptography-36a4d473a19953443362bd9c3ca5d706688d64f1.zip |
Fixed #3801 -- don't create py33 wheels (#3802)
-rw-r--r-- | .jenkins/Jenkinsfile-cryptography-wheel-builder | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.jenkins/Jenkinsfile-cryptography-wheel-builder b/.jenkins/Jenkinsfile-cryptography-wheel-builder index c4404c25..8e36f01c 100644 --- a/.jenkins/Jenkinsfile-cryptography-wheel-builder +++ b/.jenkins/Jenkinsfile-cryptography-wheel-builder @@ -8,11 +8,11 @@ properties([ def configs = [ [ label: 'windows', - versions: ['py26', 'py27', 'py33', 'py34', 'py35', 'py36'], + versions: ['py26', 'py27', 'py34', 'py35', 'py36'], ], [ label: 'windows64', - versions: ['py26', 'py27', 'py33', 'py34', 'py35', 'py36'], + versions: ['py26', 'py27', 'py34', 'py35', 'py36'], ], [ label: 'sierra', @@ -46,7 +46,6 @@ def build(version, label, imageName) { def pythonPath = [ py26: "C:\\Python26\\python.exe", py27: "C:\\Python27\\python.exe", - py33: "C:\\Python33\\python.exe", py34: "C:\\Python34\\python.exe", py35: "C:\\Python35\\python.exe", py36: "C:\\Python36\\python.exe" |