diff --git a/CHANGELOG.md b/CHANGELOG.md index cd11c09..5c0ac7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Updated pip from 23.3.1 to 23.3.2. ([#156](https://github.com/heroku/buildpacks-python/pull/156)) + ## [0.8.0] - 2023-12-08 ### Changed diff --git a/requirements/pip.txt b/requirements/pip.txt index 79b9db8..981f54a 100644 --- a/requirements/pip.txt +++ b/requirements/pip.txt @@ -1 +1 @@ -pip==23.3.1 +pip==23.3.2 diff --git a/src/packaging_tool_versions.rs b/src/packaging_tool_versions.rs index 422dbc9..febd184 100644 --- a/src/packaging_tool_versions.rs +++ b/src/packaging_tool_versions.rs @@ -8,6 +8,7 @@ const WHEEL_REQUIREMENT: &str = include_str!("../requirements/wheel.txt"); /// These are always installed, and are independent of the chosen package manager. /// Strings are used instead of a semver version, since these packages don't use /// semver, and we never introspect the version parts anyway. +#[allow(clippy::struct_field_names)] #[derive(Clone, Deserialize, PartialEq, Serialize)] pub(crate) struct PackagingToolVersions { pub(crate) pip_version: String,