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

pyproject: add, pin requests #605

Merged
merged 6 commits into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ All versions prior to 0.0.9 are untracked.
* Fixed a crash caused by invalid UTF-8 sequences in subprocess outputs
([#572](https://github.com/pypa/pip-audit/pull/572))

* Fixed a crash caused by incompatible dependency changes
([#605](https://github.com/pypa/pip-audit/pull/605))

## [2.5.2]

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ dependencies = [
"packaging>=23.0.0", # https://github.com/pypa/pip-audit/issues/464
"pip-api>=0.0.28",
"pip-requirements-parser>=32.0.0",
# NOTE(ww): urllib3 2.0 and higher are incompatible with CacheControl;
# we prevent its use by using a version of requests that uses urllib3 < 2.0.
# See: https://github.com/psf/requests/issues/6437
"requests<2.30",
"rich>=12.4",
"toml>=0.10",
]
Expand Down