Add support for python 3.3 in tox
And update associated documentation
This commit is contained in:
parent
a46fc40aa3
commit
28e19b51a7
5 changed files with 7 additions and 10 deletions
|
@ -1,5 +1,6 @@
|
||||||
language: python
|
language: python
|
||||||
python: 2.7
|
python:
|
||||||
|
- "3.5"
|
||||||
sudo: false
|
sudo: false
|
||||||
install:
|
install:
|
||||||
- pip install tox
|
- pip install tox
|
||||||
|
|
|
@ -24,12 +24,6 @@ If you are reporting a bug, please include:
|
||||||
as much detail as you can. Questions to start a discussion about the issue
|
as much detail as you can. Questions to start a discussion about the issue
|
||||||
are welcome.
|
are welcome.
|
||||||
|
|
||||||
Python 3.3 Support
|
|
||||||
~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
We'd love for ``tox -e py33`` to work and would welcome anybody who can help
|
|
||||||
make that a reality.
|
|
||||||
|
|
||||||
Fix Bugs
|
Fix Bugs
|
||||||
~~~~~~~~
|
~~~~~~~~
|
||||||
|
|
||||||
|
@ -119,7 +113,7 @@ Before you submit a pull request, check that it meets these guidelines:
|
||||||
2. If the pull request adds functionality, the docs should be updated. Put
|
2. If the pull request adds functionality, the docs should be updated. Put
|
||||||
your new functionality into a function with a docstring, and add the
|
your new functionality into a function with a docstring, and add the
|
||||||
feature to the list in README.rst.
|
feature to the list in README.rst.
|
||||||
3. The pull request should work for Python 2.7 and ideally 3.3. Check
|
3. The pull request should work for Python 2.7 and 3.3+. Check
|
||||||
`Travis`_ and make sure that
|
`Travis`_ and make sure that
|
||||||
the tests pass for all supported Python versions.
|
the tests pass for all supported Python versions.
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ Requirements
|
||||||
------------
|
------------
|
||||||
|
|
||||||
* Redis.
|
* Redis.
|
||||||
* Python 2.6, 2.7 or 3.3.
|
* Python 2.6, 2.7 or 3.3+.
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -30,6 +30,8 @@ setup(
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.3',
|
'Programming Language :: Python :: 3.3',
|
||||||
|
'Programming Language :: Python :: 3.4',
|
||||||
|
'Programming Language :: Python :: 3.5',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
],
|
],
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py27
|
envlist = py27, py33, py34, py35
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps =
|
deps =
|
||||||
|
|
Loading…
Reference in a new issue