aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-07-27 12:01:10 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-07-27 12:34:21 -0400
commit338cad687a1f49b021e81d33fd16847a4c5c7731 (patch)
treeceb6b8a2574a950705b8421913fe380a797d05a6 /setup.cfg
parenta79fbaad5fe507e6fce76c891d0793444be6d6e1 (diff)
downloadexternal_python_mako-338cad687a1f49b021e81d33fd16847a4c5c7731.tar.gz
external_python_mako-338cad687a1f49b021e81d33fd16847a4c5c7731.tar.bz2
external_python_mako-338cad687a1f49b021e81d33fd16847a4c5c7731.zip
Bump Python versions, remove conditional imports
Mako 1.1 now supports Python versions: * 2.7 * 3.4 and higher This includes that setup.py no longer includes any conditionals, allowing for a pure Python wheel build, however this is not necessarily part of the Pypi release process as of yet. The test suite also raises for Python deprecation warnings. Fixes: #249 Replaced usage of ``inspect.getfullargspec()`` with the vendored version used by SQLAlchemy, Alembic to avoid future deprecation warnings. Also cleans up an additional version of the same function that's apparently been floating around for some time. Fixes: #295 Change-Id: I98274c16b6022289d1890f4daf532bab323ab112
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 59bac7f..5e0292c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@ tag_build = dev
[tool:pytest]
-addopts= --tb native -v -r fxX
+addopts= --tb native -v -r fxX -W error
python_files=test/*test_*.py
@@ -13,6 +13,7 @@ sign = 1
identity = C4DAFEE1
[flake8]
+show-source = true
enable-extensions = G
# E203 is due to https://github.com/PyCQA/pycodestyle/issues/373
ignore =