Skip to content

Commit 03ee09d

Browse files
authored
Merge pull request scalative#188 from itziakos/remove-unavailable-python
Remove unavailable python versions
2 parents d124292 + 669a59d commit 03ee09d

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,8 @@ env:
66

77
matrix:
88
include:
9-
- python: "2.6"
10-
env: TOXENV="cp26"
119
- python: "2.7"
1210
env: TOXENV="cp27"
13-
- python: "3.3"
14-
env: TOXENV="cp33"
1511
- python: "3.4"
1612
env: TOXENV="cp34"
1713
- python: "3.5"

appveyor.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,21 @@ image: Visual Studio 2015
66
environment:
77

88
pythonunbuffered: "1"
9-
toxenv: "cp27,cp33,cp34,cp35,cp36,cp37"
9+
toxenv: "cp27,cp34,cp35,cp36,cp37"
1010

1111
matrix:
12-
- TOXPY26: "C:/Python26-x64/python.exe"
13-
TOXPY27: "C:/Python27-x64/python.exe"
14-
TOXPY33: "C:/Python33-x64/python.exe"
12+
- TOXPY27: "C:/Python27-x64/python.exe"
1513
TOXPY34: "C:/Python34-x64/python.exe"
1614
TOXPY35: "C:/Python35-x64/python.exe"
1715
TOXPY36: "C:/Python36-x64/python.exe"
1816
TOXPY37: "C:/Python37-x64/python.exe"
19-
PYTHON: "C:/Python33-x64"
20-
- TOXPY26: "C:/Python26/python.exe"
21-
TOXPY27: "C:/Python27/python.exe"
22-
TOXPY33: "C:/Python33/python.exe"
17+
PREFIX: "C:/Python33-x64"
18+
- TOXPY27: "C:/Python27/python.exe"
2319
TOXPY34: "C:/Python34/python.exe"
2420
TOXPY35: "C:/Python35/python.exe"
2521
TOXPY36: "C:/Python36/python.exe"
2622
TOXPY37: "C:/Python37/python.exe"
27-
PYTHON: "C:/Python33"
23+
PREFIX: "C:/Python33"
2824

2925
matrix:
3026
fast_finish: true
@@ -37,7 +33,7 @@ cache:
3733
- C:\Users\appveyor\AppData\Local\pip\Cache -> appveyor-cache.txt
3834

3935
init:
40-
- ps: $Env:path = $Env:PYTHON + ";" + $Env:PYTHON + "/Scripts;" + $Env:path
36+
- ps: $Env:path = $Env:PREFIX + ";" + $Env:PREFIX + "/Scripts;" + $Env:path
4137
install:
4238
- cmd: python -m pip install -rtox-requirements.txt
4339
test_script:

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,8 @@ def write_version_py(filename='haas/_version.py'):
144144
'Operating System :: Unix',
145145
'Programming Language :: Python',
146146
'Programming Language :: Python :: 2',
147-
'Programming Language :: Python :: 2.6',
148147
'Programming Language :: Python :: 2.7',
149148
'Programming Language :: Python :: 3',
150-
'Programming Language :: Python :: 3.3',
151149
'Programming Language :: Python :: 3.4',
152150
'Programming Language :: Python :: 3.5',
153151
'Programming Language :: Python :: 3.6',

0 commit comments

Comments
 (0)