Skip to content

Commit

Permalink
Fix typos (#1616)
Browse files Browse the repository at this point in the history
  • Loading branch information
kianmeng committed Jun 7, 2022
1 parent b9e38f4 commit 2a2cece
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -323,7 +323,7 @@ Features:

Backwards Incompatible Changes:

- `pip-tools` now requires `pip>=20.0` (previosly `8.1.x` - `20.0.x`). Windows users,
- `pip-tools` now requires `pip>=20.0` (previously `8.1.x` - `20.0.x`). Windows users,
make sure to use `python -m pip install pip-tools` to avoid issues with `pip`
self-update from now on ([#1055](https://github.com/jazzband/pip-tools/pull/1055)).
Thanks @atugushev
Expand Down Expand Up @@ -809,7 +809,7 @@ Bug Fixes:

## 1.8.2 (2017-03-28)

- Regression fix: editable reqs were loosing their dependencies after first round
- Regression fix: editable reqs were losing their dependencies after first round
([#476](https://github.com/jazzband/pip-tools/pull/476)) Thanks @mattlong
- Remove duplicate index urls in generated requirements.txt
([#468](https://github.com/jazzband/pip-tools/pull/468)) Thanks @majuscule
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli_compile.py
Expand Up @@ -667,7 +667,7 @@ def test_direct_reference_with_extras(runner):
def test_input_file_without_extension(pip_conf, runner):
"""
piptools can compile a file without an extension,
and add .txt as the defaut output file extension.
and add .txt as the default output file extension.
"""
with open("requirements", "w") as req_in:
req_in.write("small-fake-a==0.1")
Expand Down
4 changes: 2 additions & 2 deletions tests/test_resolver.py
Expand Up @@ -83,7 +83,7 @@
# is removed (e.g. vine from amqp>=2.0)
# See: GH-370
# because of updated dependencies in the test index, we need to pin celery
# in order to reproduce vine removal (because it was readded in later
# in order to reproduce vine removal (because it was added in later
# releases)
(
["celery<=3.1.23", "librabbitmq"],
Expand Down Expand Up @@ -111,7 +111,7 @@
"pytz==2016.4 (from celery==3.1.18)",
],
),
# Exclude package dependcy of setuptools as it is unsafe.
# Exclude package dependency of setuptools as it is unsafe.
(
["html5lib"],
["html5lib==0.999999999"],
Expand Down

0 comments on commit 2a2cece

Please sign in to comment.