Skip to content
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

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

Merged
merged 2 commits into from Oct 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 2 additions & 4 deletions .travis.yml
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
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -119,8 +119,11 @@
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Python Software Foundation License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Visualization',
]

Expand Down