mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-11 03:26:37 +03:00
4e13acdc88
Python 3.8 was released on October 14th, 2019. - Added 'Programming Language :: Python :: 3.8' trove classifier. - Added 'py38' to the tox test matrix. - Added 'python: 3.8' to the Travis test matrix. - Removed 'dist: xenial' from Travis configuration; it is now the default. - Removed 'dist: trusty' from Travis configuration; it is not longer necessary. - Removed 'sudo' from Travis configuration; it is deprecated. https://docs.python.org/3.8/whatsnew/3.8.html
12 lines
194 B
INI
12 lines
194 B
INI
[tox]
|
|
envlist = py{27,34,35,36,37,38}
|
|
|
|
[testenv]
|
|
commands = make check
|
|
whitelist_externals = make
|
|
|
|
[flake8]
|
|
max-line-length = 85
|
|
ignore = E128, W503, E741
|
|
exclude = build, doc, tests/dbapi20.py
|