Skip to content

Commit 292a19b

Browse files
author
David Stephens
committed
BLD: Move python 2.6 & 3.3 to allowed failures
1 parent 6c9ceae commit 292a19b

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ sudo: false
33
language: python
44

55
env:
6-
- PYTHON=2.6 PANDAS=0.13.1
76
- PYTHON=2.7 PANDAS=0.15.1
8-
- PYTHON=3.3 PANDAS=0.14.1
97
- PYTHON=3.4 PANDAS=0.16.2
108
- PYTHON=3.4 PANDAS=0.17.1
119
- PYTHON=3.5 PANDAS=0.17.1
@@ -15,9 +13,11 @@ env:
1513

1614
matrix:
1715
allow_failures:
16+
- env: PYTHON=2.6 PANDAS=0.13.1
1817
- env: PYTHON=2.7 PANDAS=0.12.0
1918
- env: PYTHON=2.7 PANDAS=0.11.0
2019
- env: PYTHON=2.7 PANDAS=0.10.1
20+
- env: PYTHON=3.3 PANDAS=0.14.1
2121

2222
install:
2323
- pip install -qq flake8
@@ -41,7 +41,7 @@ install:
4141
- conda create -q -n test-environment python=$PYTHON pandas=$PANDAS nose coverage setuptools html5lib lxml
4242
- source activate test-environment
4343
- pip install beautifulsoup4
44-
- if [[ "$PYTHON" == "2.6" ]]; then
44+
- if [[ "$PYTHON" == "2.6" ]]; then
4545
pip install simplejson;
4646
fi
4747
- pip install coveralls --quiet

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,10 @@ def readme():
4545
'Programming Language :: Cython',
4646
'Programming Language :: Python',
4747
'Programming Language :: Python :: 2',
48-
'Programming Language :: Python :: 2.6',
4948
'Programming Language :: Python :: 2.7',
5049
'Programming Language :: Python :: 3',
51-
'Programming Language :: Python :: 3.2',
52-
'Programming Language :: Python :: 3.3',
5350
'Programming Language :: Python :: 3.4',
51+
'Programming Language :: Python :: 3.5',
5452
'Topic :: Scientific/Engineering',
5553
],
5654
keywords='data',

0 commit comments

Comments
 (0)