Skip to content

Commit

Permalink
Added Python 3.5 support and testing. Badges for PyPI.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaront committed Nov 24, 2015
1 parent b47e796 commit 9a98bb6
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
- "pypy"
# command to install dependencies
install: "pip install ."
# command to run tests
script: nosetests
script: nosetests
13 changes: 10 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
MyGeotab
========

.. image:: https://travis-ci.org/Geotab/mygeotab-python.svg?branch=master
.. image:: https://img.shields.io/travis/Geotab/mygeotab-python/master.svg?style=flat
:target: https://travis-ci.org/Geotab/mygeotab-python

:alt: Build Status

.. image:: https://img.shields.io/pypi/v/mygeotab.svg?style=flat
:target: https://pypi.python.org/pypi/mygeotab

.. image:: https://img.shields.io/pypi/dm/mygeotab.svg?style=flat
:target: https://pypi.python.org/pypi/mygeotab

.. image:: https://readthedocs.org/projects/mygeotab-python/badge/?version=latest
:target: https://readthedocs.org/projects/mygeotab-python/?badge=latest
:alt: Documentation Status
Expand All @@ -18,7 +25,7 @@ Features

- Automatic serializing and de-serializing of JSON results
- Clean, Pythonic API for querying data
- Cross-platform and compatible with Python 2.7.6 and Python 3.4
- Cross-platform and compatible with Python 2.7+, 3.3+, and pypy

Usage
-----
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
myg=mygeotab.cli:main
''',
classifiers=(
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
Expand All @@ -48,6 +48,8 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries'
),
)
)
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34
envlist = py27,py34,py35
[testenv]
deps=pytest
commands=py.test
commands=py.test

0 comments on commit 9a98bb6

Please sign in to comment.