Add python 3.6 support (#259)

Closes #253
This commit is contained in:
0livd 2017-08-20 12:21:59 +02:00 committed by Alexis Metaireau
parent c7815e4878
commit 75104d9c19
7 changed files with 8 additions and 7 deletions

6
.gitignore vendored
View file

@ -1,7 +1,4 @@
budget/budget.db
budget.db
budget/memory
budget/settings.py
ihatemoney.cfg
*.pyc
*.egg-info
dist
@ -9,3 +6,4 @@ dist
docs/_build/
.tox
dist
.cache/

View file

@ -6,4 +6,5 @@ env:
- TOXENV=py27
- TOXENV=py34
- TOXENV=py35
- TOXENV=py36
- TOXENV=docs

View file

@ -19,5 +19,5 @@ so.
Requirements
============
* **Python**: 2.7, 3.4, 3.5.
* **Python**: 2.7, 3.4, 3.5, 3.6.
* **Backends**: MySQL, PostgreSQL, SQLite, Memory.

View file

@ -11,7 +11,7 @@ Requirements
«Ihatemoney» depends on:
* **Python**: either 2.7, 3.4, 3.5 will work.
* **Python**: either 2.7, 3.4, 3.5, 3.6 will work.
* **A Backend**: to choose among MySQL, PostgreSQL, SQLite or Memory.
We recommend to use `pip <https://pypi.python.org/pypi/pip/>`_ and

View file

@ -3,6 +3,7 @@ flask-wtf>=0.14
flask-sqlalchemy>=2.2,<3.0
flask-mail>=0.8
Flask-Migrate>=1.8.0
Flask-script
flask-babel
flask-rest
jinja2>=2.6

View file

@ -22,6 +22,7 @@ REQUIREMENTS = [
'flask-sqlalchemy',
'flask-mail>=0.8',
'Flask-Migrate>=1.8.0',
'Flask-script',
'flask-babel',
'flask-rest',
'jinja2>=2.6',

View file

@ -1,5 +1,5 @@
[tox]
envlist = py35,py34,py27,docs,lint
envlist = py36,py35,py34,py27,docs,lint
skip_missing_interpreters = True
[testenv]