aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-06-26 15:08:33 -1000
committerAlex Gaynor <alex.gaynor@gmail.com>2017-06-26 21:08:33 -0400
commite3a2fb209b905915874a2a46c4a11ee33c111dc7 (patch)
tree631c163537d0be4ab9c977fa515f2ae279b6b701 /Jenkinsfile
parent62c3421a73053af5cf09d110f927632dd19f00aa (diff)
downloadcryptography-e3a2fb209b905915874a2a46c4a11ee33c111dc7.tar.gz
cryptography-e3a2fb209b905915874a2a46c4a11ee33c111dc7.tar.bz2
cryptography-e3a2fb209b905915874a2a46c4a11ee33c111dc7.zip
remove python 3.3 from CI (#3729)
* remove python 3.3 from CI * remove 3.3 everywhere, not just from CI
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 5440093f..50f53a20 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -5,11 +5,11 @@ if (env.BRANCH_NAME == "master") {
def configs = [
[
label: 'windows',
- toxenvs: ['py26', 'py27', 'py33', 'py34', 'py35', 'py36'],
+ toxenvs: ['py26', 'py27', 'py34', 'py35', 'py36'],
],
[
label: 'windows64',
- toxenvs: ['py26', 'py27', 'py33', 'py34', 'py35', 'py36'],
+ toxenvs: ['py26', 'py27', 'py34', 'py35', 'py36'],
],
[
label: 'freebsd11',
@@ -199,7 +199,6 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) {
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"