Skip to content

Commit

Permalink
Merge pull request #3376 from venthur/fix_spell
Browse files Browse the repository at this point in the history
fixed some spelling mistakes,
  • Loading branch information
abravalheri committed Jun 14, 2022
2 parents ec2d4e9 + 5b265be commit fbfa418
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/deprecated/commands.rst
Expand Up @@ -51,7 +51,7 @@ That is, you can simply list the normal setup commands and options following the
pip install . # replacement for python setup.py install
pip install --editable . # replacement for python setup.py develop

pip install installer # nees to be installed first
pip install installer # needs to be installed first
python -m installer /path/to/wheel/file.whl

-----------------
Expand Down
2 changes: 1 addition & 1 deletion docs/deprecated/distutils-legacy.rst
Expand Up @@ -3,7 +3,7 @@ Porting from Distutils

Setuptools and the PyPA have a `stated goal <https://github.com/pypa/packaging-problems/issues/127>`_ to make Setuptools the reference API for distutils.

Since the 60.0.0 release, Setuptools includes a local, vendored copy of distutils (from late copies of CPython) that is enabled by default. To disable the use of this copy of distutils when invoking setuptools, set the enviroment variable:
Since the 60.0.0 release, Setuptools includes a local, vendored copy of distutils (from late copies of CPython) that is enabled by default. To disable the use of this copy of distutils when invoking setuptools, set the environment variable:

SETUPTOOLS_USE_DISTUTILS=stdlib

Expand Down
2 changes: 1 addition & 1 deletion setuptools/config/_apply_pyprojecttoml.py
Expand Up @@ -354,7 +354,7 @@ class _WouldIgnoreField(UserWarning):
`{field} = {value!r}`
According to the spec (see the link bellow), however, setuptools CANNOT
According to the spec (see the link below), however, setuptools CANNOT
consider this value unless {field!r} is listed as `dynamic`.
https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
Expand Down
2 changes: 1 addition & 1 deletion setuptools/logging.py
Expand Up @@ -12,7 +12,7 @@ def configure():
"""
Configure logging to emit warning and above to stderr
and everything else to stdout. This behavior is provided
for compatibilty with distutils.log but may change in
for compatibility with distutils.log but may change in
the future.
"""
err_handler = logging.StreamHandler()
Expand Down
2 changes: 1 addition & 1 deletion setuptools/tests/test_easy_install.py
Expand Up @@ -1179,7 +1179,7 @@ def test_editable_user_and_build_isolation(setup_context, monkeypatch, tmp_path)

# == Arrange ==
# Pretend that build isolation was enabled
# e.g pip sets the environment varible PYTHONNOUSERSITE=1
# e.g pip sets the environment variable PYTHONNOUSERSITE=1
monkeypatch.setattr('site.ENABLE_USER_SITE', False)

# Patching $HOME for 2 reasons:
Expand Down

0 comments on commit fbfa418

Please sign in to comment.