Skip to content

Commit

Permalink
Bump pip from 23.1.2 to 23.2 in /requirements (#67)
Browse files Browse the repository at this point in the history
* Bump pip from 23.1.2 to 23.2 in /requirements

Bumps [pip](https://github.com/pypa/pip) from 23.1.2 to 23.2.
- [Changelog](https://github.com/pypa/pip/blob/main/NEWS.rst)
- [Commits](pypa/pip@23.1.2...23.2)

---
updated-dependencies:
- dependency-name: pip
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add changelog entry

* Upgrade dependency in test fixture

And update pip output for new metadata file changes.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ed Morley <[email protected]>

GUS-W-13770122.
  • Loading branch information
dependabot[bot] authored Jul 17, 2023
1 parent 3d8a5be commit 2d05f61
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Updated pip from 23.1.2 to 23.2. ([#67](https://github.com/heroku/buildpacks-python/pull/67))
- Updated setuptools from 67.8.0 to 68.0.0. ([#51](https://github.com/heroku/buildpacks-python/pull/51))

## [0.4.0] - 2023-06-07
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pip==23.1.2
pip==23.2
2 changes: 1 addition & 1 deletion tests/fixtures/pip_basic/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# This package has been picked since it has no dependencies and is small/fast to install.
typing-extensions==4.4.0
typing-extensions==4.7.1
26 changes: 16 additions & 10 deletions tests/integration/pip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@ fn pip_basic_install_and_cache_reuse() {
[Installing dependencies using Pip]
Running pip install
Collecting typing-extensions==4.4.0 (from -r requirements.txt (line 2))
Downloading typing_extensions-4.4.0-py3-none-any.whl (26 kB)
Collecting typing-extensions==4.7.1 (from -r requirements.txt (line 2))
Obtaining dependency information for typing-extensions==4.7.1 from https://files.pythonhosted.org/packages/ec/6b/63cc3df74987c36fe26157ee12e09e8f9db4de771e0f3404263117e75b95/typing_extensions-4.7.1-py3-none-any.whl.metadata
Downloading typing_extensions-4.7.1-py3-none-any.whl.metadata (3.1 kB)
Downloading typing_extensions-4.7.1-py3-none-any.whl (33 kB)
Installing collected packages: typing-extensions
Successfully installed typing-extensions-4.4.0
Successfully installed typing-extensions-4.7.1
===> EXPORTING
"}
);
Expand All @@ -59,7 +61,7 @@ fn pip_basic_install_and_cache_reuse() {
----------------- -------
pip {pip_version}
setuptools {setuptools_version}
typing_extensions 4.4.0
typing_extensions 4.7.1
wheel {wheel_version}
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: typing-extensions in /layers/heroku_python/dependencies/lib/"
Expand All @@ -84,10 +86,12 @@ fn pip_basic_install_and_cache_reuse() {
[Installing dependencies using Pip]
Using cached pip download/wheel cache
Running pip install
Collecting typing-extensions==4.4.0 (from -r requirements.txt (line 2))
Using cached typing_extensions-4.4.0-py3-none-any.whl (26 kB)
Collecting typing-extensions==4.7.1 (from -r requirements.txt (line 2))
Obtaining dependency information for typing-extensions==4.7.1 from https://files.pythonhosted.org/packages/ec/6b/63cc3df74987c36fe26157ee12e09e8f9db4de771e0f3404263117e75b95/typing_extensions-4.7.1-py3-none-any.whl.metadata
Using cached typing_extensions-4.7.1-py3-none-any.whl.metadata (3.1 kB)
Using cached typing_extensions-4.7.1-py3-none-any.whl (33 kB)
Installing collected packages: typing-extensions
Successfully installed typing-extensions-4.4.0
Successfully installed typing-extensions-4.7.1
===> EXPORTING
"}
);
Expand Down Expand Up @@ -137,10 +141,12 @@ fn pip_cache_invalidation_and_metadata_compatibility() {
[Installing dependencies using Pip]
Discarding cached pip download/wheel cache
Running pip install
Collecting typing-extensions==4.4.0 (from -r requirements.txt (line 2))
Downloading typing_extensions-4.4.0-py3-none-any.whl (26 kB)
Collecting typing-extensions==4.7.1 (from -r requirements.txt (line 2))
Obtaining dependency information for typing-extensions==4.7.1 from https://files.pythonhosted.org/packages/ec/6b/63cc3df74987c36fe26157ee12e09e8f9db4de771e0f3404263117e75b95/typing_extensions-4.7.1-py3-none-any.whl.metadata
Downloading typing_extensions-4.7.1-py3-none-any.whl.metadata (3.1 kB)
Downloading typing_extensions-4.7.1-py3-none-any.whl (33 kB)
Installing collected packages: typing-extensions
Successfully installed typing-extensions-4.4.0
Successfully installed typing-extensions-4.7.1
===> EXPORTING
"}
);
Expand Down

0 comments on commit 2d05f61

Please sign in to comment.