From db4a9f49286b13a4e9deb810645dd5fc1400b804 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Mon, 31 Aug 2020 17:25:22 -0700 Subject: Simply flake8 configuration W503 is ignored by default. --- setup.cfg | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index c4dee1d..2ed296b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,8 +10,7 @@ xfail_strict = True [flake8] exclude = sqlparse/compat.py -ignore = - W503, +extend-ignore = E731 [coverage:run] -- cgit v1.2.1 From cc75926ca8b4121ba98dce9002f0f07460f3de28 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 24 May 2020 14:43:23 -0700 Subject: Document PyPy support with trove classifier --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index a706e99..c23968b 100644 --- a/setup.py +++ b/setup.py @@ -96,6 +96,8 @@ setup( 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Database', 'Topic :: Software Development', ], -- cgit v1.2.1 From 686bf6d3c5b2598952a752e708e5d0419fa64781 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 24 May 2020 17:50:05 -0700 Subject: Remove unused pytest-travis-fold test dependency The Travis configuration does not executed through tox since f2a3a6ea356dc38e79c4a025217ed8a3875cabac. --- tox.ini | 3 --- 1 file changed, 3 deletions(-) diff --git a/tox.ini b/tox.ini index cd4e052..0087d50 100644 --- a/tox.ini +++ b/tox.ini @@ -12,9 +12,6 @@ envlist = deps = pytest pytest-cov - pytest-travis-fold -passenv = - TRAVIS commands = sqlformat --version pytest --cov=sqlparse {posargs} -- cgit v1.2.1