Skip to content

Commit ef5846a

Browse files
committed
Merge branch 'master' into stable_sort
2 parents 1d4018f + 6f88b1f commit ef5846a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ sudo: false
22
language: python
33
python:
44
- "2.7"
5-
- "3.3"
65
- "3.4"
6+
- "3.5"
77
install:
88
- pip install --upgrade pip
99
- pip install python-dateutil --upgrade

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Arctic storage implementations are **pluggable**. VersionStore is the default.
106106

107107
Arctic currently works with:
108108

109-
* Python 2.7, 3.3, 3.4
109+
* Python 2.7, 3.4, 3.5
110110
* pymongo >= 3.0
111111
* Pandas
112112
* MongoDB >= 2.4.x

tests/integration/store/test_pandas_store.py

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from pandas.tseries.offsets import DateOffset
1010
from pandas.util.testing import assert_frame_equal, assert_series_equal
1111
import pytest
12+
import pandas as pd
1213

1314
from arctic._compression import decompress
1415
from arctic.date import DateRange, mktz
@@ -524,6 +525,7 @@ def panel(i1, i2, i3):
524525
list(rrule(DAILY, count=i3, dtstart=dt(1970, 1, 1), interval=1)))
525526

526527

528+
@pytest.mark.skipif(pd.__version__ == '0.18.0', reason="issue #115")
527529
@pytest.mark.parametrize("df_size", list(itertools.combinations_with_replacement([1, 2, 4], r=3)))
528530
def test_panel_save_read(library, df_size):
529531
'''Note - empties are not tested here as they don't work!'''

0 commit comments

Comments
 (0)