Skip to content

BLD: Move python 2.6 & 3.3 to allowed failures #174

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,22 @@ sudo: false
language: python

env:
- PYTHON=2.6 PANDAS=0.13.1
- PYTHON=2.7 PANDAS=0.15.1
- PYTHON=3.3 PANDAS=0.14.1
- PYTHON=3.4 PANDAS=0.16.2
- PYTHON=3.4 PANDAS=0.17.1
- PYTHON=3.5 PANDAS=0.17.1
- PYTHON=3.5 PANDAS=v0.18.0rc1
- PYTHON=2.7 PANDAS=0.12.0
- PYTHON=2.7 PANDAS=0.11.0
- PYTHON=2.7 PANDAS=0.10.1

matrix:
allow_failures:
- env: PYTHON=2.6 PANDAS=0.13.1
- env: PYTHON=2.7 PANDAS=0.12.0
- env: PYTHON=2.7 PANDAS=0.11.0
- env: PYTHON=2.7 PANDAS=0.10.1
- env: PYTHON=3.3 PANDAS=0.14.1

install:
- pip install -qq flake8
Expand All @@ -41,7 +42,7 @@ install:
- conda create -q -n test-environment python=$PYTHON pandas=$PANDAS nose coverage setuptools html5lib lxml
- source activate test-environment
- pip install beautifulsoup4
- if [[ "$PYTHON" == "2.6" ]]; then
- if [[ "$PYTHON" == "2.6" ]]; then
pip install simplejson;
fi
- pip install coveralls --quiet
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,10 @@ def readme():
'Programming Language :: Cython',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
],
keywords='data',
Expand Down