Skip to content

Commit 7829ad3

Browse files
CI: Test against Python 3.7 (pandas-dev#21604)
1 parent 4922c0e commit 7829ad3

File tree

7 files changed

+40
-7
lines changed

7 files changed

+40
-7
lines changed

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ matrix:
3535
language: generic
3636
env:
3737
- JOB="3.5, OSX" ENV_FILE="ci/travis-35-osx.yaml" TEST_ARGS="--skip-slow --skip-network"
38+
39+
- dist: trusty
40+
env:
41+
- JOB="3.7" ENV_FILE="ci/travis-37.yaml" TEST_ARGS="--skip-slow --skip-network"
42+
3843
- dist: trusty
3944
env:
4045
- JOB="2.7, locale, slow, old NumPy" ENV_FILE="ci/travis-27-locale.yaml" LOCALE_OVERRIDE="zh_CN.UTF-8" SLOW=true

ci/travis-37.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: pandas
2+
channels:
3+
- defaults
4+
- conda-forge
5+
- c3i_test
6+
dependencies:
7+
- python=3.7
8+
- cython
9+
- numpy
10+
- python-dateutil
11+
- nomkl
12+
- pytz
13+
- pytest
14+
- pytest-xdist

doc/source/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For more information, see the `Python 3 statement`_ and the `Porting to Python 3
4343
Python version support
4444
----------------------
4545

46-
Officially Python 2.7, 3.5, and 3.6.
46+
Officially Python 2.7, 3.5, 3.6, and 3.7.
4747

4848
Installing pandas
4949
-----------------

doc/source/whatsnew/v0.23.2.txt

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ v0.23.2
66
This is a minor bug-fix release in the 0.23.x series and includes some small regression fixes
77
and bug fixes. We recommend that all users upgrade to this version.
88

9+
.. note::
10+
11+
Pandas 0.23.2 is first pandas release that's compatible with
12+
Python 3.7 (:issue:`20552`)
13+
14+
915
.. contents:: What's new in v0.23.2
1016
:local:
1117
:backlinks: none

pandas/compat/__init__.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@
4040
from collections import namedtuple
4141

4242
PY2 = sys.version_info[0] == 2
43-
PY3 = (sys.version_info[0] >= 3)
44-
PY35 = (sys.version_info >= (3, 5))
45-
PY36 = (sys.version_info >= (3, 6))
46-
PYPY = (platform.python_implementation() == 'PyPy')
43+
PY3 = sys.version_info[0] >= 3
44+
PY35 = sys.version_info >= (3, 5)
45+
PY36 = sys.version_info >= (3, 6)
46+
PY37 = sys.version_info >= (3, 7)
47+
PYPY = platform.python_implementation() == 'PyPy'
4748

4849
try:
4950
import __builtin__ as builtins

pandas/tests/tseries/offsets/test_offsets.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,10 @@ def test_repr(self):
591591
assert repr(self.offset) == '<BusinessDay>'
592592
assert repr(self.offset2) == '<2 * BusinessDays>'
593593

594-
expected = '<BusinessDay: offset=datetime.timedelta(1)>'
594+
if compat.PY37:
595+
expected = '<BusinessDay: offset=datetime.timedelta(days=1)>'
596+
else:
597+
expected = '<BusinessDay: offset=datetime.timedelta(1)>'
595598
assert repr(self.offset + timedelta(1)) == expected
596599

597600
def test_with_offset(self):
@@ -1651,7 +1654,10 @@ def test_repr(self):
16511654
assert repr(self.offset) == '<CustomBusinessDay>'
16521655
assert repr(self.offset2) == '<2 * CustomBusinessDays>'
16531656

1654-
expected = '<BusinessDay: offset=datetime.timedelta(1)>'
1657+
if compat.PY37:
1658+
expected = '<BusinessDay: offset=datetime.timedelta(days=1)>'
1659+
else:
1660+
expected = '<BusinessDay: offset=datetime.timedelta(1)>'
16551661
assert repr(self.offset + timedelta(1)) == expected
16561662

16571663
def test_with_offset(self):

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ def build_extensions(self):
217217
'Programming Language :: Python :: 2.7',
218218
'Programming Language :: Python :: 3.5',
219219
'Programming Language :: Python :: 3.6',
220+
'Programming Language :: Python :: 3.7',
220221
'Programming Language :: Cython',
221222
'Topic :: Scientific/Engineering']
222223

0 commit comments

Comments
 (0)