Skip to content

Commit 4120c15

Browse files
committed
simplify
1 parent 74383f3 commit 4120c15

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ A brief description of the categories of changes:
6363
`requirements_linux.txt`, `requirements_windows.txt` for each respective OS
6464
and one extra file `requirements_universal.txt` if you prefer a single file.
6565
The `requirements.txt` file may be removed in the future.
66-
* (bzlmod) `pip.parse` now supports `whl-only` setup using
66+
* The rules_python version is now reported in `//python/features.bzl#features.version`
67+
* (bzlmod) `pip.parse` now supports `whl-only` setup using
6768
`download_only = True` where users can specify multiple requirements files
6869
and use the `pip` backend to do the downloading. This was only available for
6970
users setting {bzl:obj}`pip.parse.experimental_index_url`, but now users have
7071
more options whilst we continue to work on stabilizing the experimental feature.
71-
* The rules_python version is now reported in `//python/features.bzl#features.version`
7272

7373
{#v0-0-0-removed}
7474
### Removed

examples/bzlmod/MODULE.bazel.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/private/pypi/extension.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def _create_whl_repos(
323323
if get_index_urls:
324324
logger.warn(lambda: "falling back to pip for installing the right file for {}".format(requirement.requirement_line))
325325

326-
args = dict(whl_library_args.items()) # make a copy
326+
args = dict(whl_library_args) # make a copy
327327
args["requirement"] = requirement.requirement_line
328328
if requirement.extra_pip_args:
329329
args["extra_pip_args"] = requirement.extra_pip_args

0 commit comments

Comments
 (0)