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

build(deps): Bump pip tools to >= 7.4.0 #1841

Merged
merged 4 commits into from
Apr 18, 2024
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
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ A brief description of the categories of changes:
* (bzlmod): The `MODULE.bazel.lock` `whl_library` rule attributes are now
sorted in the attributes section. We are also removing values that are not
default in order to reduce the size of the lock file.
* (coverage) Bump `coverage.py` to [7.4.3](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst#version-743--2024-02-23).
* (deps): Bumped bazel_features to 1.9.1 to detect optional support
non-blocking downloads.
* (deps): Updated `pip_tools` to >= 7.4.0

### Fixed

Expand Down Expand Up @@ -73,9 +75,6 @@ A brief description of the categories of changes:
[test_file_pattern_issue]: https://github.com/bazelbuild/rules_python/issues/1816
[test_file_pattern_docs]: gazelle/README.md#directive-python_test_file_pattern

### Changed

* (coverage) Bump `coverage.py` to [7.4.3](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst#version-743--2024-02-23).

## [0.31.0] - 2024-02-12

Expand Down
8 changes: 4 additions & 4 deletions python/pip_install/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ _RULE_DEPS = [
# START: maintained by 'bazel run //tools/private/update_deps:update_pip_deps'
(
"pypi__build",
"https://files.pythonhosted.org/packages/58/91/17b00d5fac63d3dca605f1b8269ba3c65e98059e1fd99d00283e42a454f0/build-0.10.0-py3-none-any.whl",
"af266720050a66c893a6096a2f410989eeac74ff9a68ba194b3f6473e8e26171",
"https://files.pythonhosted.org/packages/e2/03/f3c8ba0a6b6e30d7d18c40faab90807c9bb5e9a1e3b2fe2008af624a9c97/build-1.2.1-py3-none-any.whl",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pip_tools v7.4.0 (coincidentlaly, the same jazzband/pip-tools#1979 that I'm interested in using) also pinned build >= 1.0.0. In pip_tools <= 7.3.0, build did not have any version specifier.

"75e10f767a433d9a86e50d83f418e83efc18ede923ee5ff7df93b6cb0306c5d4",
),
(
"pypi__click",
Expand Down Expand Up @@ -66,8 +66,8 @@ _RULE_DEPS = [
),
(
"pypi__pip_tools",
"https://files.pythonhosted.org/packages/e8/df/47e6267c6b5cdae867adbdd84b437393e6202ce4322de0a5e0b92960e1d6/pip_tools-7.3.0-py3-none-any.whl",
"8717693288720a8c6ebd07149c93ab0be1fced0b5191df9e9decd3263e20d85e",
"https://files.pythonhosted.org/packages/0d/dc/38f4ce065e92c66f058ea7a368a9c5de4e702272b479c0992059f7693941/pip_tools-7.4.1-py3-none-any.whl",
"4c690e5fbae2f21e87843e89c26191f0d9454f362d8acdbd695716493ec8b3a9",
),
(
"pypi__pyproject_hooks",
Expand Down
2 changes: 1 addition & 1 deletion python/pip_install/tools/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ more_itertools
packaging
pep517
pip
pip_tools
pip_tools >= 7.4.0
setuptools
tomli
wheel
Expand Down
Loading