From b1d68ba0cf57af3a34ef72b6ea44ba5fa30d8e44 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 6 May 2019 07:12:26 -0700 Subject: [PATCH 1/2] Add changelog for #199 --- changelog/199.feature.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/199.feature.rst diff --git a/changelog/199.feature.rst b/changelog/199.feature.rst new file mode 100644 index 00000000..21379ef0 --- /dev/null +++ b/changelog/199.feature.rst @@ -0,0 +1 @@ +Switch from ``pkg_resources`` to ``importlib-metadata`` for entrypoint detection for improved performance and import time. From f1f2e3c7bd1b0bf66ed06b195b28d2a90f606e2f Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 6 May 2019 07:25:07 -0700 Subject: [PATCH 2/2] skip installation in linting env --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 9483ff78..431acebf 100644 --- a/tox.ini +++ b/tox.ini @@ -22,8 +22,7 @@ deps= pytest-benchmark [testenv:linting] -skipsdist = True -usedevelop = True +skip_install = true basepython = python3.6 deps = pre-commit commands = pre-commit run --all-files --show-diff-on-failure