Skip to content

Commit

Permalink
Python support
Browse files Browse the repository at this point in the history
  • Loading branch information
GaretJax committed Jul 5, 2017
1 parent 894d2b2 commit c5a984b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
language: python

sudo: false

python:
- "2.7"
- "2.6"
- "3.3"
- "3.4"
- "3.5"
- "3.6"

install:
- pip install -r requirements.txt -r requirements-testing.txt
Expand Down
6 changes: 6 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

Next release
------------

* Add support for python 3.5, 3.6 and deprecate official python 2.6 support.
* Add ``__main__`` module for python 3.


0.6.0 – 2016/02/14
------------------
Expand Down
5 changes: 4 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ by Sphinx plus the following options:
``--open-browser`` was selected (default 5)
* ``-z``/``--watch`` multiple allowed, option to specify additional directories
to watch, for example: `some/extra/dir`
* ``--poll`` force polling, useful for Vagrant or VirtualBox `which don't trigger file updates in shared folders <https://www.virtualbox.org/ticket/10660>`_
* ``--poll`` force polling, useful for Vagrant or VirtualBox which do not
trigger file updates in `shared folders`_

.. _shared folders: https://www.virtualbox.org/ticket/10660

To build a classical Sphinx documentation set, issue the following command::

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ def test_links():
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
])

0 comments on commit c5a984b

Please sign in to comment.