Skip to content

Commit d63cdac

Browse files
committed
COMPAT: drop 3.4 support
TST: drop 3.4, add 3.6/0.20.1 to config matrix
1 parent 9dfd106 commit d63cdac

7 files changed

+14
-7
lines changed

.travis.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ language: python
44

55
env:
66
- PYTHON=2.7 PANDAS=0.19.2 COVERAGE='false' LINT='false'
7-
- PYTHON=3.4 PANDAS=0.18.1 COVERAGE='false' LINT='false'
8-
- PYTHON=3.5 PANDAS=0.19.2 COVERAGE='true' LINT='false'
9-
- PYTHON=3.6 PANDAS=0.19.2 COVERAGE='false' LINT='true'
7+
- PYTHON=3.5 PANDAS=0.18.1 COVERAGE='true' LINT='false'
8+
- PYTHON=3.6 PANDAS=0.20.1 COVERAGE='false' LINT='true'
9+
- PYTHON=3.6 PANDAS=MASTER COVERAGE='false' LINT='false'
1010

1111
before_install:
1212
- echo "before_install"
@@ -23,9 +23,15 @@ install:
2323
- conda info -a
2424
- conda create -n test-environment python=$PYTHON
2525
- source activate test-environment
26-
- conda install pandas=$PANDAS
26+
- if [[ "$PANDAS" == "MASTER" ]]; then
27+
conda install numpy pytz python-dateutil;
28+
PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com";
29+
pip install --pre --upgrade --timeout=60 -f $PRE_WHEELS pandas;
30+
else
31+
conda install pandas=$PANDAS;
32+
fi
2733
- pip install coverage pytest pytest-cov flake8 codecov
28-
- REQ="ci/requirements-${PYTHON}.pip"
34+
- REQ="ci/requirements-${PYTHON}-${PANDAS}.pip"
2935
- pip install -r $REQ
3036
- conda list
3137
- python setup.py install
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/source/changelog.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
Changelog
22
=========
33

4-
0.1.7 / 2017-??-??
4+
0.2.0 / 2017-??-??
55
------------------
66

7+
- drop support for Python 3.4
8+
79
0.1.6 / 2017-05-03
810
------------------
911

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def readme():
4040
'Programming Language :: Python :: 2',
4141
'Programming Language :: Python :: 2.7',
4242
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.4',
4443
'Programming Language :: Python :: 3.5',
4544
'Programming Language :: Python :: 3.6',
4645
'Topic :: Scientific/Engineering',

0 commit comments

Comments
 (0)