mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Add new Python versions to build matrix
Also update package metadata. Fixes #1439
This commit is contained in:
parent
e9a00b75c5
commit
146a769afa
26
.travis.yml
26
.travis.yml
@ -1,12 +1,24 @@
|
|||||||
sudo: false
|
sudo: false
|
||||||
language: python
|
language: python
|
||||||
python: 3.5
|
matrix:
|
||||||
env:
|
include:
|
||||||
- TOXENV=py26
|
- python: 2.6
|
||||||
- TOXENV=py27
|
env: TOXENV=py26
|
||||||
- TOXENV=py34
|
- python: 2.7
|
||||||
- TOXENV=py35
|
env: TOXENV=py27
|
||||||
- TOXENV=pypy
|
- python: 3.4
|
||||||
|
env: TOXENV=py34
|
||||||
|
- python: 3.5
|
||||||
|
env: TOXENV=py35
|
||||||
|
- python: 3.6
|
||||||
|
env: TOXENV=py36
|
||||||
|
- python: 3.6-dev
|
||||||
|
env: TOXENV=py36-dev
|
||||||
|
- python: nightly
|
||||||
|
env: TOXENV=py37
|
||||||
|
allow_failures:
|
||||||
|
- env: TOXENV=py36-dev
|
||||||
|
- env: TOXENV=py37
|
||||||
install: pip install tox
|
install: pip install tox
|
||||||
script: tox
|
script: tox
|
||||||
cache:
|
cache:
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -27,6 +27,8 @@ CLASSIFIERS = [
|
|||||||
'Programming Language :: Python :: 3.2',
|
'Programming Language :: Python :: 3.2',
|
||||||
'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.6',
|
||||||
'Topic :: Internet',
|
'Topic :: Internet',
|
||||||
'Topic :: Utilities',
|
'Topic :: Utilities',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
|
|||||||
6
tox.ini
6
tox.ini
@ -1,5 +1,5 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist = py26, py27, py34, py35, pypy
|
envlist = py26, py27, py34, py35, py36, py36-dev, py37, pypy
|
||||||
skipsdist = True
|
skipsdist = True
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
@ -8,5 +8,5 @@ commands = py.test {posargs:tests/} --assert=plain
|
|||||||
deps =
|
deps =
|
||||||
-rrequirements_test.txt
|
-rrequirements_test.txt
|
||||||
py26: unittest2
|
py26: unittest2
|
||||||
py2{6,7},pypy: mock
|
py{26,27},pypy: mock
|
||||||
py3{3,4}: aiohttp
|
py{34,35,36,36-dev,37}: aiohttp
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user