aboutsummaryrefslogtreecommitdiffstats
path: root/.jenkins
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-06-27 20:07:14 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2018-06-27 23:07:14 -0400
commit4ee1cb949767a882d56053cde922f260874f00c6 (patch)
tree0a84ef7b71bbfa21ef63f14bc33cefd8bd393c14 /.jenkins
parent3bab819c558ead888825e33f8df3f17707ff2c20 (diff)
downloadcryptography-4ee1cb949767a882d56053cde922f260874f00c6.tar.gz
cryptography-4ee1cb949767a882d56053cde922f260874f00c6.tar.bz2
cryptography-4ee1cb949767a882d56053cde922f260874f00c6.zip
Add py37 (#4298)
* test against python 3.7 for windows * update docs to say we test on 3.7 * more succinct * maybe make this actually work. * link properly * moar changes
Diffstat (limited to '.jenkins')
-rw-r--r--.jenkins/Jenkinsfile-cryptography-wheel-builder9
1 files changed, 5 insertions, 4 deletions
diff --git a/.jenkins/Jenkinsfile-cryptography-wheel-builder b/.jenkins/Jenkinsfile-cryptography-wheel-builder
index c46238bd..68991da9 100644
--- a/.jenkins/Jenkinsfile-cryptography-wheel-builder
+++ b/.jenkins/Jenkinsfile-cryptography-wheel-builder
@@ -8,11 +8,11 @@ properties([
def configs = [
[
label: 'windows',
- versions: ['py27', 'py34', 'py35', 'py36'],
+ versions: ['py27', 'py34', 'py35', 'py36', 'py37'],
],
[
label: 'windows64',
- versions: ['py27', 'py34', 'py35', 'py36'],
+ versions: ['py27', 'py34', 'py35', 'py36', 'py37'],
],
[
label: 'sierra',
@@ -49,9 +49,10 @@ def build(version, label, imageName) {
py27: "C:\\Python27\\python.exe",
py34: "C:\\Python34\\python.exe",
py35: "C:\\Python35\\python.exe",
- py36: "C:\\Python36\\python.exe"
+ py36: "C:\\Python36\\python.exe",
+ py37: "C:\\Python36\\python.exe"
]
- if (version == "py35" || version == "py36") {
+ if (version == "py35" || version == "py36" || version == "py37") {
opensslPaths = [
"windows": [
"include": "C:\\OpenSSL-Win32-2015\\include",