Skip to content

Commit

Permalink
Merge pull request #2915 from rodrigomologni/docs/fix-typo-and-example
Browse files Browse the repository at this point in the history
Docs/fix typo and example
  • Loading branch information
jaraco authored Dec 5, 2021
2 parents be4466c + 4fd382d commit 9b6c3bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/userguide/dependency_management.rst
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,6 @@ or ``setup.py``.
setup(
name="Project-B",
python_requires=[">=3.6"],
python_requires=">=3.6",
...,
)
2 changes: 1 addition & 1 deletion docs/userguide/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ When your project is installed, all of the dependencies not already installed
will be located (via PyPI), downloaded, built (if necessary), and installed.
This, of course, is a simplified scenarios. ``setuptools`` also provide
additional keywords such as ``setup_requires`` that allows you to install
dependencies before running the script, and ``extras_requires`` that take
dependencies before running the script, and ``extras_require`` that take
care of those needed by automatically generated scripts. It also provides
mechanisms to handle dependencies that are not in PyPI. For more advanced use,
see :doc:`dependency_management`
Expand Down

0 comments on commit 9b6c3bd

Please sign in to comment.