mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
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.
This commit is contained in:
parent
8cb1d36690
commit
872cdea547
1 changed files with 3 additions and 5 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue