Commit 12adec90 by Kevin Kirsche Committed by GitHub

fix: typos in multiple locations (#4483)

This commit fixes typographical errors in the CHANGELOG, docs folder,
poetry package, and the tests. This was done via the codespell utility,
which can be found at https://github.com/codespell-project/codespell
parent 656c71d4
...@@ -971,7 +971,7 @@ commands in project subdirectories. ...@@ -971,7 +971,7 @@ commands in project subdirectories.
- Improved dependency resolution to avoid unnecessary operations. - Improved dependency resolution to avoid unnecessary operations.
- Improved dependency resolution speed. - Improved dependency resolution speed.
- Improved CLI reactivity by deferring imports. - Improved CLI reactivity by deferring imports.
- License classifer is not automatically added to classifers. - License classifier is not automatically added to classifiers.
### Fixed ### Fixed
...@@ -1016,7 +1016,7 @@ commands in project subdirectories. ...@@ -1016,7 +1016,7 @@ commands in project subdirectories.
### Changed ### Changed
- Changed how wilcard constraints are handled. - Changed how wildcard constraints are handled.
### Fixed ### Fixed
......
...@@ -186,7 +186,7 @@ poetry install --extras "mysql pgsql" ...@@ -186,7 +186,7 @@ poetry install --extras "mysql pgsql"
poetry install -E mysql -E pgsql poetry install -E mysql -E pgsql
``` ```
By default `poetry` will install your project's package everytime you run `install`: By default `poetry` will install your project's package every time you run `install`:
```bash ```bash
$ poetry install $ poetry install
......
...@@ -80,7 +80,7 @@ Keyring support is enabled using the [keyring library](https://pypi.org/project/ ...@@ -80,7 +80,7 @@ Keyring support is enabled using the [keyring library](https://pypi.org/project/
Poetry will fallback to Pip style use of keyring so that backends like Poetry will fallback to Pip style use of keyring so that backends like
Microsoft's [artifacts-keyring](https://pypi.org/project/artifacts-keyring/) get a change to retrieve Microsoft's [artifacts-keyring](https://pypi.org/project/artifacts-keyring/) get a change to retrieve
valid credentials. It will need to be properly installed into Poetry's virtualenv, valid credentials. It will need to be properly installed into Poetry's virtualenv,
preferrably by installing a plugin. preferably by installing a plugin.
If you are letting Poetry manage your virtual environments you will want a virtualenv If you are letting Poetry manage your virtual environments you will want a virtualenv
seeder installed in Poetry's virtualenv that installs the desired keyring backend seeder installed in Poetry's virtualenv that installs the desired keyring backend
......
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
}, },
"classifiers": { "classifiers": {
"type": "array", "type": "array",
"description": "A list of trove classifers." "description": "A list of trove classifiers."
}, },
"packages": { "packages": {
"type": "array", "type": "array",
......
...@@ -341,7 +341,7 @@ class PyPiRepository(RemoteRepository): ...@@ -341,7 +341,7 @@ class PyPiRepository(RemoteRepository):
# Checking wheels first as they are more likely to hold # Checking wheels first as they are more likely to hold
# the necessary information # the necessary information
if "bdist_wheel" in urls: if "bdist_wheel" in urls:
# Check fo a universal wheel # Check for a universal wheel
wheels = urls["bdist_wheel"] wheels = urls["bdist_wheel"]
universal_wheel = None universal_wheel = None
......
...@@ -44,7 +44,7 @@ def get_extra_package_names( ...@@ -44,7 +44,7 @@ def get_extra_package_names(
def _extra_packages(package_names: Iterable[str]) -> Iterator[str]: def _extra_packages(package_names: Iterable[str]) -> Iterator[str]:
"""Recursively find dependencies for packages names""" """Recursively find dependencies for packages names"""
# for each extra pacakge name # for each extra package name
for package_name in package_names: for package_name in package_names:
# Find the actual Package object. A missing key indicates an implicit # Find the actual Package object. A missing key indicates an implicit
# dependency (like setuptools), which should be ignored # dependency (like setuptools), which should be ignored
......
...@@ -65,7 +65,7 @@ def test_requirement_source_type_url(): ...@@ -65,7 +65,7 @@ def test_requirement_source_type_url():
"foo", "foo",
"0.0.0", "0.0.0",
source_type="url", source_type="url",
source_url="https://somehwere.com/releases/foo-1.0.0.tar.gz", source_url="https://somewhere.com/releases/foo-1.0.0.tar.gz",
) )
result = installer.requirement(foo, formatted=True) result = installer.requirement(foo, formatted=True)
......
...@@ -12,7 +12,7 @@ supports standard YAML tags and provides Python-specific tags that ...@@ -12,7 +12,7 @@ supports standard YAML tags and provides Python-specific tags that
allow to represent an arbitrary Python object. allow to represent an arbitrary Python object.
PyYAML is applicable for a broad range of tasks from complex PyYAML is applicable for a broad range of tasks from complex
configuration files to object serialization and persistance.""" configuration files to object serialization and persistence."""
AUTHOR = "Kirill Simonov" AUTHOR = "Kirill Simonov"
AUTHOR_EMAIL = "xi@resolvent.net" AUTHOR_EMAIL = "xi@resolvent.net"
LICENSE = "MIT" LICENSE = "MIT"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment