From b8d7bf7e753c4f50e20af628daa9f7ae58fc9813 Mon Sep 17 00:00:00 2001 From: Hideo Hattori Date: Sun, 14 Aug 2022 21:59:44 +0900 Subject: [PATCH 1/2] include tox.ini (because need unit test) --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 8dd24dc7..0c43f759 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -12,6 +12,7 @@ include test/example.py include test/iso_8859_1.py include test/fake_configuration/.pep8 include test/fake_pycodestyle_configuration/tox.ini +include tox.ini recursive-exclude test/suite *.py recursive-exclude test/suite/out *.py exclude .travis.yml @@ -27,5 +28,4 @@ exclude test/acid_pypi.py exclude test/suite exclude test/suite/out exclude test/vim_autopep8.py -exclude tox.ini exclude update_readme.py From f4e7a2153a42e4f259ddae655b495cffdf674311 Mon Sep 17 00:00:00 2001 From: Hideo Hattori Date: Sun, 14 Aug 2022 22:03:13 +0900 Subject: [PATCH 2/2] fix pycodestyle requirements on tox --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e830d35e..ee01a851 100644 --- a/tox.ini +++ b/tox.ini @@ -8,5 +8,5 @@ commands= python test/acid.py --aggressive test/example.py python test/acid.py --compare-bytecode test/example.py deps= - pycodestyle>=2.0 + pycodestyle>=2.9.1 pydiff>=0.1.2