Skip to content

Commit

Permalink
Update supported Python versions (#170)
Browse files Browse the repository at this point in the history
* Add Py36 and drop Py33

* Update readme

* Revert adding version constraint to numpy
  • Loading branch information
scasagrande committed Jun 7, 2017
1 parent 6c6dbb4 commit 3316327
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "pip install -r requirements.txt"
- "pip install -r dev-requirements.txt"
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
InstrumentKit
=============

.. image:: https://img.shields.io/travis/Galvant/InstrumentKit.svg?maxAge=2592000
.. image:: https://img.shields.io/travis/Galvant/InstrumentKit/master.svg?maxAge=2592000
:target: https://travis-ci.org/Galvant/InstrumentKit
:alt: Travis-CI build status

Expand Down Expand Up @@ -111,7 +111,7 @@ send, one can use the following functions to do so:
Python Version Compatibility
----------------------------

At this time, Python 2.7, 3.3, 3.4, and 3.5 are supported. Should you encounter
At this time, Python 2.7, 3.4, 3.5, and 3.6 are supported. Should you encounter
any problems with this library that occur in one version or another, please
do not hesitate to let us know.

Expand All @@ -134,7 +134,7 @@ To run the tests against all supported version of Python, you will need to
have the binary for each installed, as well as any requirements needed to
install ``numpy`` under each Python version. On Debian/Ubuntu systems this means
you will need to install the ``python-dev`` package for each version of Python
supported (``python2.7-dev``, ``python3.3-dev``, etc).
supported (``python2.7-dev``, ``python3.4-dev``, etc).

With the required system packages installed, all tests can be run with ``tox``:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"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",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Science/Research",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py33,py34,py35
envlist = py27,py34,py35,py36
[testenv]
deps = -rdev-requirements.txt
commands = nosetests

0 comments on commit 3316327

Please sign in to comment.