Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #1616

Merged
merged 5 commits into from Jun 7, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -309,7 +309,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 @@ -795,7 +795,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 README.rst
Expand Up @@ -452,7 +452,7 @@ Generally, yes. If you want a reproducible environment installation available fr
then yes, you should commit both ``requirements.in`` and ``requirements.txt`` to source control.

Note that if you are deploying on multiple Python environments (read the section below),
then you must commit a seperate output file for each Python environment.
then you must commit a separate output file for each Python environment.
We suggest to use the ``{env}-requirements.txt`` format
(ex: ``win32-py3.7-requirements.txt``, ``macos-py3.10-requirements.txt``, etc.).

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 read 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