Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
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