aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-10-12 06:06:01 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2017-10-11 18:06:01 -0400
commit4cf6e785ca5608cffd8d92ad1e1a5073108a2a20 (patch)
treeeca2e7ce6043f94cbb8034ee3ad95aaf45bdcf41 /Jenkinsfile
parent38fe038522651fd18eeae60d5e96dc81aa07e863 (diff)
downloadcryptography-4cf6e785ca5608cffd8d92ad1e1a5073108a2a20.tar.gz
cryptography-4cf6e785ca5608cffd8d92ad1e1a5073108a2a20.tar.bz2
cryptography-4cf6e785ca5608cffd8d92ad1e1a5073108a2a20.zip
expunge python 2.6 (#3962)
* expunge python 2.6 * how did THAT happen * remove another unsupported python from the tox envlist * hypothesis can now be unconditionally imported
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index bac0067a..0e4c60ce 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -5,11 +5,11 @@ if (env.BRANCH_NAME == "master") {
def configs = [
[
label: 'windows',
- toxenvs: ['py26', 'py27', 'py34', 'py35', 'py36'],
+ toxenvs: ['py27', 'py34', 'py35', 'py36'],
],
[
label: 'windows64',
- toxenvs: ['py26', 'py27', 'py34', 'py35', 'py36'],
+ toxenvs: ['py27', 'py34', 'py35', 'py36'],
],
[
label: 'freebsd11',
@@ -206,7 +206,6 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) {
withEnv(["LABEL=$label", "TOXENV=$toxenv", "IMAGE_NAME=$imageName"]) {
if (label.contains("windows")) {
def pythonPath = [
- py26: "C:\\Python26\\python.exe",
py27: "C:\\Python27\\python.exe",
py34: "C:\\Python34\\python.exe",
py35: "C:\\Python35\\python.exe",