diff options
author | Deniz Turgut <dturgut@gmail.com> | 2022-10-23 18:22:50 +0300 |
---|---|---|
committer | Deniz Turgut <dturgut@gmail.com> | 2022-10-23 18:25:25 +0300 |
commit | cdc90d5d07691e5d7d35c81badd0d27074f8451c (patch) | |
tree | db1eb71238620d25af938cd614f4b12f110a3c4a | |
parent | 6d11c6f2e5d2086cefc7c1917c71e2f3899f72b8 (diff) | |
download | pelican-cdc90d5d07691e5d7d35c81badd0d27074f8451c.tar.gz |
unpin flake8 and do not install pelican while checking
installing pelican brings in markdown. flake8 and markdown have
incompatible requirements for importlib-metadata. installing pelican
is not required to run flake8.
-rw-r--r-- | requirements/style.pip | 2 | ||||
-rw-r--r-- | tox.ini | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/requirements/style.pip b/requirements/style.pip index fe4c25c4..90225d01 100644 --- a/requirements/style.pip +++ b/requirements/style.pip @@ -1,2 +1,2 @@ -flake8<4.0 +flake8 flake8-import-order @@ -37,6 +37,7 @@ max-line-length = 88 [testenv:flake8] basepython = python3.9 +skip_install = true deps = -rrequirements/style.pip commands = |