From b15df87577cab060a02667767bcc96b2dfd5b91a Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Mon, 27 Nov 2023 13:57:20 -0500 Subject: [PATCH] Prefer imperative voice --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index b0a281d..c87e111 100644 --- a/README.rst +++ b/README.rst @@ -25,7 +25,7 @@ Compatibility shim to ease adoption of `importlib_metadata 3.6 = 3.6`` on all Pythons (or only those prior to 3.10a7). In some environments, a library may be constrained on which versions of ``importlib_metadata`` can be required, so this library bridges that gap. -To use this shim, add ``backports.entry_points_selectable`` to your project requirements. It will require ``importlib_metadata`` automatically where needed (prior to Python 3.8) but be satisfied by older versions. Projects should still require ``importlib_metadata`` as appropriate for API uses other than for ``entry_points``. +To use this shim, add ``backports.entry_points_selectable`` to the affected project's requirements. It will require ``importlib_metadata`` automatically where needed (prior to Python 3.8) but be satisfied by older versions. Projects should still require ``importlib_metadata`` as appropriate for API uses other than for ``entry_points``. Then in code, instead of ``from importlib.metadata import entry_points``, use:: @@ -33,4 +33,4 @@ Then in code, instead of ``from importlib.metadata import entry_points``, use:: And then use the "selectable" features (pass keyword arguments to ``entry_points`` or invoke ``.select()`` on the result). -This backport has a very lenient dependency on `importlib_metadata` for older Pythons and is a single module implementation. If adding a dependency is a concern, this module may be vendored into the downstream project. +This backport has a very lenient dependency on `importlib_metadata` for older Pythons and is a single module implementation. If adding a dependency is a concern, this module may be vendored into the affected project.