aboutsummaryrefslogtreecommitdiffstats
path: root/.jenkins
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-09-20 08:03:02 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2017-09-19 20:03:02 -0400
commit872cdea547e55a85b23b1bbdf123a7505e7cd4a4 (patch)
treefc280da78b3938ac0c085ea912e414dfe78e64c2 /.jenkins
parent8cb1d36690ed823206cc91e5c73147e4ad557d85 (diff)
downloadcryptography-872cdea547e55a85b23b1bbdf123a7505e7cd4a4.tar.gz
cryptography-872cdea547e55a85b23b1bbdf123a7505e7cd4a4.tar.bz2
cryptography-872cdea547e55a85b23b1bbdf123a7505e7cd4a4.zip
remove py26 windows and macOS wheels (#3921)
The wheel package is starting to drop support and download counts for them represent less than .02% of downloads for the month.
Diffstat (limited to '.jenkins')
-rw-r--r--.jenkins/Jenkinsfile-cryptography-wheel-builder8
1 files changed, 3 insertions, 5 deletions
diff --git a/.jenkins/Jenkinsfile-cryptography-wheel-builder b/.jenkins/Jenkinsfile-cryptography-wheel-builder
index 11ba2781..ae749cc6 100644
--- a/.jenkins/Jenkinsfile-cryptography-wheel-builder
+++ b/.jenkins/Jenkinsfile-cryptography-wheel-builder
@@ -8,15 +8,15 @@ properties([
def configs = [
[
label: 'windows',
- versions: ['py26', 'py27', 'py34', 'py35', 'py36'],
+ versions: ['py27', 'py34', 'py35', 'py36'],
],
[
label: 'windows64',
- versions: ['py26', 'py27', 'py34', 'py35', 'py36'],
+ versions: ['py27', 'py34', 'py35', 'py36'],
],
[
label: 'sierra',
- versions: ['py26', 'py27', 'py34', 'py35', 'py36'],
+ versions: ['py27', 'py34', 'py35', 'py36'],
],
[
label: 'docker',
@@ -44,7 +44,6 @@ def build(version, label, imageName) {
timeout(time: 30, unit: 'MINUTES') {
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",
@@ -89,7 +88,6 @@ def build(version, label, imageName) {
"""
} else if (label.contains("sierra")) {
def pythonPath = [
- py26: "python2.6",
py27: "/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7",
py34: "/Library/Frameworks/Python.framework/Versions/3.4/bin/python3.4",
py35: "/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5",