Add support for python 3.6
- Changed the Dockerfile to use `python:3.6` base image; - Updated PyPI classifiers to include it; - Added it to tox/travis environments for CI.
This commit is contained in:
parent
cfc670f1b1
commit
a60732d963
5 changed files with 5 additions and 3 deletions
|
@ -5,6 +5,7 @@ python:
|
||||||
- "3.3"
|
- "3.3"
|
||||||
- "3.4"
|
- "3.4"
|
||||||
- "3.5"
|
- "3.5"
|
||||||
|
- "3.6"
|
||||||
sudo: false
|
sudo: false
|
||||||
install:
|
install:
|
||||||
- pip install tox-travis
|
- pip install tox-travis
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3.5
|
FROM python:3.6
|
||||||
|
|
||||||
ENV APP_DIR=/usr/src/snappass
|
ENV APP_DIR=/usr/src/snappass
|
||||||
|
|
||||||
|
|
|
@ -81,4 +81,4 @@ Alternatively, you can use `Docker`_ and `Docker Compose`_ to install and run Sn
|
||||||
|
|
||||||
$ docker-compose up -d
|
$ docker-compose up -d
|
||||||
|
|
||||||
This will pull all dependencies, i.e. Redis and appropriate Python version (3.5), then start up snappass and Redis server. SnapPass server is accessible at: http://localhost:5000
|
This will pull all dependencies, i.e. Redis and appropriate Python version (3.6), then start up snappass and Redis server. SnapPass server is accessible at: http://localhost:5000
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -32,6 +32,7 @@ setup(
|
||||||
'Programming Language :: Python :: 3.3',
|
'Programming Language :: Python :: 3.3',
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
'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 = py26, py27, py33, py34, py35
|
envlist = py26, py27, py33, py34, py35, py36
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps =
|
deps =
|
||||||
|
|
Loading…
Reference in a new issue