mirror of
https://github.com/sprockets/sprockets.mixins.correlation.git
synced 2024-11-23 11:19:53 +00:00
280db40236
- Drop support for Python 2.7, 3.3, 3.4 as we no longer support these versions internally and nothing should be using them - Drop support for Tornado < 4.2 since this is also out of date - Add support for Tornado 5.1 and async with ``AsyncIOHandlerMixin`` - Update tests to include tests for the new ``AsyncIOHandlerMixin`` - Clean up code style a bit to make namespaces a bit more clear - Cleaup setup.py a minor bit and have it ignore ‘-r’ includes in requirements - Update PINs for requirements - Update LICENSE copyright dates
25 lines
435 B
INI
25 lines
435 B
INI
[tox]
|
|
envlist = py35,py36,py37,pypy3,tornado42,tornado43,torando51
|
|
toxworkdir = {toxinidir}/build/tox
|
|
skip_missing_intepreters = true
|
|
|
|
[testenv]
|
|
deps =
|
|
-rtest-requirements.txt
|
|
tornado
|
|
commands = {envbindir}/nosetests
|
|
|
|
[testenv:tornado42]
|
|
deps =
|
|
-rtest-requirements.txt
|
|
tornado>=4.2,<4.3
|
|
|
|
[testenv:tornado43]
|
|
deps =
|
|
-rtest-requirements.txt
|
|
tornado>=4.3,<4.4
|
|
|
|
[testenv:tornado51]
|
|
deps =
|
|
-rtest-requirements.txt
|
|
tornado>=5.1,<5.2
|