diff options
author | Andreas Jaeger <aj@suse.com> | 2020-04-13 11:11:33 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@suse.com> | 2020-04-13 11:16:21 +0200 |
commit | d9718805c1eaead1b00470d276cc94d12d3c9b57 (patch) | |
tree | 324f7cf0035ee2e4a5d83b57ebdca41bfe390cb8 /tox.ini | |
parent | 8b2aaa3f6cdcd1840b2b101dd3d0d9bc2034ad9d (diff) | |
download | oslo-middleware-d9718805c1eaead1b00470d276cc94d12d3c9b57.tar.gz |
Cleanup py27 support
This repo is now testing only with Python 3, so let's make
a few cleanups:
- Remove obsolete sections from setup.cfg
- Update classifiers
- Use newer openstackdocstheme version
- Switch to hacking 3.0, fix problems found
Change-Id: I539b00204279c7645ef4a3f804f64a1e7af30f05
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,9 +34,9 @@ commands = python setup.py test --coverage --coverage-package-name=oslo_middlewa [flake8] # E123, E125 skipped as they are invalid PEP-8. - +# W504 line break after binary operator show-source = True -ignore = E123,E125 +ignore = E123,E125,W504 exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,__init__.py [hacking] |