Skip to content

Commit

Permalink
chore: minor spelling fixes (#459)
Browse files Browse the repository at this point in the history
Co-authored-by: Bjorn Neergaard <bjorn@neersighted.com>
  • Loading branch information
branchvincent and neersighted committed Sep 18, 2022
1 parent 743e09c commit 4535724
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build-backend = "poetry.core.masonry.api"
```

Once this is present, a PEP 517 frontend like `pip` can build and install your project from source without the need
for Poetry or any of it's dependencies.
for Poetry or any of its dependencies.

```shell
# install to current environment
Expand All @@ -34,12 +34,12 @@ pip wheel /path/to/poetry/managed/project
```

## Why is this required?
Prior to the release of version `1.1.0`, Poetry was a build as a project management tool that included a PEP 517
build backend. This was inefficient and time consuming in majority cases a PEP 517 build was required. For example,
Prior to the release of version `1.1.0`, Poetry was a project management tool that included a PEP 517
build backend. This was inefficient and time consuming when a PEP 517 build was required. For example,
both `pip` and `tox` (with isolated builds) would install Poetry and all dependencies it required. Most of these
dependencies are not required when the objective is to simply build either a source or binary distribution of your
project.

In order to improve the above situation, `poetry-core` was created. Shared functionality pertaining to PEP 517 build
backends, including reading lock file, `pyproject.toml` and building wheel/sdist, were implemented in this package. This
backends, including reading lock file, `pyproject.toml` and building wheel/sdist, were implemented in this package. This
makes PEP 517 builds extremely fast for Poetry managed packages.
2 changes: 1 addition & 1 deletion src/poetry/core/json/schemas/poetry-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
},
"classifiers": {
"type": "array",
"description": "A list of trove classifers."
"description": "A list of trove classifiers."
},
"packages": {
"type": "array",
Expand Down
2 changes: 1 addition & 1 deletion tests/vcs/test_vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"git+file://C:\\Users\\hello\\testing.git#zkat/windows-files",
GitUrl("file://C:\\Users\\hello\\testing.git", "zkat/windows-files", None),
),
# hidden directories on Windows ues $ in their path
# hidden directories on Windows use $ in their path
# python-poetry/poetry#5493
(
"git+file://C:\\Users\\hello$\\testing.git#zkat/windows-files",
Expand Down

0 comments on commit 4535724

Please sign in to comment.