8000 TST: drop py2.6 & py3.3 testing by tacaswell · Pull Request #5215 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

TST: drop py2.6 & py3.3 testing #5215

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

Merged
merged 2 commits into from
Oct 28, 2015
Merged
Changes from 1 commit
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
Next Next commit
TST: drop py2.6 & py3.3 testing
As discussed on the mailing list, going forward we will be dropping
support for python 2.6 and python 3.3.

This allows mpl to use ordered dicts and is required for in-progress
traitlet/serialization work.

 - moved minimum support numpy test to 2.7
 - moved pandas optional test dep to 3.5

http://matplotlib.1069221.n5.nabble.com/Matplotlib-devel-supported-python-versions-tt46154.html
  • Loading branch information
tacaswell committed Oct 8, 2015
commit 254e16925644e114cb06ceaf9085196a6de0545d
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,11 @@ language: python

matrix:
include:
- python: 2.6
env: NUMPY=numpy==1.6 MOCK=mock
- python: 2.7
env: MOCK=mock PANDAS=pandas
- python: 3.3
env: MOCK=mock NUMPY=numpy==1.6
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there any plans to drop support for numpy 1.6? I think version 1.7 came out in early 2013, and supporting 1.6 seems to accumulate some preprocessor cruft.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should ask the numpy folks how many versions back they are supporting bug fixes for and don't go further back than that.

I am 👍 on dropping old versions of numpy, but that should be a separate discussion.

- python: 3.4
- python: 3.5
env: PANDAS=pandas
- python: 2.7
env: TEST_ARGS=--pep8
- python: 2.7
Expand Down
0