Skip to content

Commit

Permalink
build/setup.cfg/docs: fix typos
Browse files Browse the repository at this point in the history
PR  #412
  • Loading branch information
dtrodrigues authored Dec 9, 2021
1 parent a92fbf9 commit cb91293
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies. The ``--skip-dependency-check`` flag should be used in this
case.

We have a dependency on tomli_, but toml_ can be used instead, which may make
bootstraping easier.
bootstrapping easier.


Compatibility
Expand Down
2 changes: 1 addition & 1 deletion docs/mission.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Mission Statement
In the Python ecosystem, the build system tools and the package management
are very intertwined. While it might be useful for user to be able to access
all this capabilities in a single project (such as pip_), there are several
usecases where this is not desirable. The main being custom environments
use cases where this is not desirable. The main being custom environments
(outside PyPI_) or situations where the user does its own package management,
such as Linux distributions.

Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ packages = find:
install_requires =
packaging>=19.0
pep517>=0.9.1
tomli>=1.0.0 # toml can be used instead -- in case it makes bootstraping easier
colorama;os_name == "nt" # not actually a runtime dependency, only supplied as there is not "recomended dependency" support
tomli>=1.0.0 # toml can be used instead -- in case it makes bootstrapping easier
colorama;os_name == "nt" # not actually a runtime dependency, only supplied as there is not "recommended dependency" support
importlib-metadata>=0.22;python_version < "3.8"
python_requires = >=3.6
package_dir =
Expand Down
2 changes: 1 addition & 1 deletion src/build/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def _handle_backend(self, hook: str) -> Iterator[None]:
sys.exc_info(),
)
except subprocess.CalledProcessError as exception:
raise BuildBackendException(exception, f'Backend subproccess exited when trying to invoke {hook}')
raise BuildBackendException(exception, f'Backend subprocess exited when trying to invoke {hook}')
except Exception as exception:
raise BuildBackendException(exception, exc_info=sys.exc_info())

Expand Down

0 comments on commit cb91293

Please sign in to comment.