From efb2899cde7da3b3025fa45256b2c654f92167f6 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 7 Dec 2021 14:46:46 -0500 Subject: [PATCH] setup: pip-api >= 0.0.26 (#196) * setup: pip-api >= 0.0.26 * CHANGELOG: record changes --- CHANGELOG.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43ba7db4..1a0c1ad2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ All versions prior to 0.0.9 are untracked. ### Fixed +* Dependency sources: a crash caused by unexpected logging statements in `pip`'s + JSON output was fixed + ([#196](https://github.com/trailofbits/pip-audit/pull/196)) + ### Removed ## [1.1.0] - 2021-12-06 diff --git a/setup.py b/setup.py index f1625504..8235798c 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ platforms="any", python_requires=">=3.6", install_requires=[ - "pip-api>=0.0.25", + "pip-api>=0.0.26", "packaging>=21.0.0", # TODO: Remove this once 3.7 is our minimally supported version. "dataclasses>=0.6; python_version < '3.7'",