Skip to content

Commit

Permalink
Merge pull request pypa#3252 from mccalluc/patch-1
Browse files Browse the repository at this point in the history
Small wording tweaks for readability
  • Loading branch information
abravalheri authored Apr 6, 2022
2 parents b686a31 + f4af5af commit db03453
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/userguide/dependency_management.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ other two types of dependency keyword, this one is specified in your
Declaring required dependency
=============================
This is where a package declares its core dependencies, without which it won't
be able to run. ``setuptools`` support automatically download and install
be able to run. ``setuptools`` supports automatically downloading and installing
these dependencies when the package is installed. Although there is more
finesse to it, let's start with a simple example.

Expand Down Expand Up @@ -90,7 +90,7 @@ that verify the availability of the specified dependencies at runtime.

Platform specific dependencies
------------------------------
Setuptools offer the capability to evaluate certain conditions before blindly
Setuptools offers the capability to evaluate certain conditions before blindly
installing everything listed in ``install_requires``. This is great for platform
specific dependencies. For example, the ``enum`` package was added in Python
3.4, therefore, package that depends on it can elect to install it only when
Expand Down Expand Up @@ -250,9 +250,9 @@ distributions, if the package's dependencies aren't already installed:
Optional dependencies
=====================
Setuptools allows you to declare dependencies that only get installed under
specific circumstances. These dependencies are specified with ``extras_require``
specific circumstances. These dependencies are specified with the ``extras_require``
keyword and are only installed if another package depends on it (either
directly or indirectly) This makes it convenient to declare dependencies for
directly or indirectly). This makes it convenient to declare dependencies for
ancillary functions such as "tests" and "docs".

.. note::
Expand Down

0 comments on commit db03453

Please sign in to comment.