Skip to content

Commit ffe8c8d

Browse files
committed
Merge pull request #11863 from jreback/py3.3
COMPAT: remove python 3.3. compat, #11273
2 parents fc40dcc + 17295a6 commit ffe8c8d

File tree

7 files changed

+5
-39
lines changed

7 files changed

+5
-39
lines changed

.travis.yml

-14
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,6 @@ matrix:
5757
- FULL_DEPS=true
5858
- CLIPBOARD=xsel
5959
- BUILD_TYPE=conda
60-
- python: 3.3
61-
env:
62-
- JOB_NAME: "33_nslow"
63-
- NOSE_ARGS="not slow and not disabled"
64-
- FULL_DEPS=true
65-
- CLIPBOARD=xsel
66-
- BUILD_TYPE=conda
6760
- python: 2.7
6861
env:
6962
- JOB_NAME: "27_slow"
@@ -104,13 +97,6 @@ matrix:
10497
- BUILD_TYPE=pydata
10598
- PANDAS_TESTING_MODE="deprecate"
10699
allow_failures:
107-
- python: 3.3
108-
env:
109-
- JOB_NAME: "33_nslow"
110-
- NOSE_ARGS="not slow and not disabled"
111-
- FULL_DEPS=true
112-
- CLIPBOARD=xsel
113-
- BUILD_TYPE=conda
114100
- python: 2.7
115101
env:
116102
- JOB_NAME: "27_slow"

ci/requirements-3.3.build

-4
This file was deleted.

ci/requirements-3.3.pip

-2
This file was deleted.

ci/requirements-3.3.run

-17
This file was deleted.

doc/source/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Instructions for installing from source,
1818
Python version support
1919
----------------------
2020

21-
Officially Python 2.6, 2.7, 3.3, 3.4, and 3.5
21+
Officially Python 2.6, 2.7, 3.4, and 3.5
2222

2323
Installing pandas
2424
-----------------

doc/source/whatsnew/v0.18.0.txt

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ This is a major release from 0.17.1 and includes a small number of API changes,
77
enhancements, and performance improvements along with a large number of bug fixes. We recommend that all
88
users upgrade to this version.
99

10+
.. warning::
11+
12+
pandas >= 0.18.0 will no longer support compatibility with Python version 3.3 (:issue:`11273`)
13+
1014
Highlights include:
1115

1216
Check the :ref:`API Changes <whatsnew_0180.api>` and :ref:`deprecations <whatsnew_0180.deprecations>` before updating.

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ def build_extensions(self):
180180
'Programming Language :: Python :: 3',
181181
'Programming Language :: Python :: 2.6',
182182
'Programming Language :: Python :: 2.7',
183-
'Programming Language :: Python :: 3.3',
184183
'Programming Language :: Python :: 3.4',
185184
'Programming Language :: Python :: 3.5',
186185
'Programming Language :: Cython',

0 commit comments

Comments
 (0)