Skip to content

Commit d99c8ba

Browse files
authored
Merge branch 'main' into starlarkify-flags
2 parents 98cffb6 + 43a5acf commit d99c8ba

File tree

30 files changed

+730
-115
lines changed

30 files changed

+730
-115
lines changed

CHANGELOG.md

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,18 @@ BEGIN_UNRELEASED_TEMPLATE
4848
END_UNRELEASED_TEMPLATE
4949
-->
5050

51-
{#v0-0-0}
52-
## Unreleased
51+
{#v1-7-0}
52+
## [1.7.0] - 2025-10-11
5353

54-
[0.0.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.0.0
54+
[1.7.0]: https://github.com/bazel-contrib/rules_python/releases/tag/1.7.0
5555

56-
{#v0-0-0-removed}
56+
{#v1-7-0-removed}
5757
### Removed
5858
* (core rules) Support for Bazel's long deprecated "extra actions" has been
5959
removed
6060
([#3215](https://github.com/bazel-contrib/rules_python/issues/3215)).
6161

62-
{#v0-0-0-changed}
62+
{#v1-7-0-changed}
6363
### Changed
6464
* (deps) bumped rules_cc dependency to `0.1.5`.
6565
* (bootstrap) For {obj}`--bootstrap_impl=system_python`, `PYTHONPATH` is no
@@ -83,11 +83,14 @@ END_UNRELEASED_TEMPLATE
8383
vendoring the `requirements.bzl` file, please re-vendor so that downstream is unaffected
8484
when the APIs get removed. If you need to customize the way the dependencies get
8585
evaluated, see [our docs](/pypi/download.html#customizing-requires-dist-resolution) on customizing `Requires-Dist` resolution.
86-
* (toolchains) Added Python version 3.14.0.
86+
* (toolchains) Added Python versions 3.14.0, 3.13.8, 3.12.12, 3.11.14, 3.10.19, and 3.9.24
87+
from the [20251010] release.
8788
* (deps) (bzlmod) Upgraded to `bazel-skylib` version
8889
[1.8.2](https://github.com/bazelbuild/bazel-skylib/releases/tag/1.8.2)
8990

90-
{#v0-0-0-fixed}
91+
[20251010]: https://github.com/astral-sh/python-build-standalone/releases/tag/20251010
92+
93+
{#v1-7-0-fixed}
9194
### Fixed
9295
* (rules) The `PyInfo` constructor was setting the wrong value for
9396
`has_py3_only_sources` - this is now fixed.
@@ -101,14 +104,22 @@ END_UNRELEASED_TEMPLATE
101104
* (venvs) {obj}`--venvs_site_packages=yes` no longer errors when packages with
102105
overlapping files or directories are used together.
103106
([#3204](https://github.com/bazel-contrib/rules_python/issues/3204)).
107+
* (venvs) {obj}`--venvs_site_packages=yes` works for packages that dynamically
108+
link to shared libraries
109+
([#3228](https://github.com/bazel-contrib/rules_python/issues/3228)).
110+
* (venvs) {obj}`--venvs_site_packages=yes` includes `pth` files at the root of the
111+
site-packages folder
112+
([#3339](https://github.com/bazel-contrib/rules_python/issues/3339)).
104113
* (uv) {obj}`//python/uv:lock.bzl%lock` now works with a local platform
105114
runtime.
106115
* (toolchains) WORKSPACE builds now correctly register musl and freethreaded
107116
variants. Setting {obj}`--py_linux_libc=musl` and `--py_freethreaded=yes` now
108117
activate them, respectively.
109118
([#3262](https://github.com/bazel-contrib/rules_python/issues/3262)).
119+
* (rules) {obj}`py_console_script_binary` is now compatible with symbolic macros
120+
([#3195](https://github.com/bazel-contrib/rules_python/pull/3195)).
110121

111-
{#v0-0-0-added}
122+
{#v1-7-0-added}
112123
### Added
113124
* (runfiles) The Python runfiles library now supports Bazel's
114125
`--incompatible_compact_repo_mapping_manifest` flag.
@@ -1971,4 +1982,4 @@ Breaking changes:
19711982
* (pip) Create all_data_requirements alias
19721983
* Expose Python C headers through the toolchain.
19731984

1974-
[0.24.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.24.0
1985+
[0.24.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.24.0

docs/api/rules_python/python/cc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This target provides:
3535

3636
* `CcInfo`: The C++ information about the Python ABI3 headers.
3737

38-
:::{versionadded} VERSION_NEXT_FEATURE
38+
:::{versionadded} 1.7.0
3939
The {obj}`features.headers_abi3` attribute can be used to detect if this target
4040
is available or not.
4141
:::

docs/environment-variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The {bzl:obj}`interpreter_args` attribute.
2626

2727
:::{versionadded} 1.3.0
2828
:::
29-
:::{versionchanged} VERSION_NEXT_FEATURE
29+
:::{versionchanged} 1.7.0
3030
Support added for {obj}`--bootstrap_impl=system_python`.
3131
:::
3232

@@ -71,7 +71,7 @@ instead of the legacy Python scripts.
7171

7272
:::{versionadded} 1.5.0
7373
:::
74-
:::{versionchanged} VERSION_NEXT_FEATURE
74+
:::{versionchanged} 1.7.0
7575
Flipped to be enabled by default.
7676
:::
7777
::::

docs/pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ dependencies = [
1313
"absl-py",
1414
"typing-extensions",
1515
"sphinx-reredirects",
16-
"pefile"
16+
"pefile",
17+
"pyelftools",
18+
"macholib",
1719
]

docs/requirements.txt

Lines changed: 61 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ alabaster==1.0.0 ; python_full_version >= '3.10' \
1414
--hash=sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e \
1515
--hash=sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b
1616
# via sphinx
17+
altgraph==0.17.4 \
18+
--hash=sha256:1b5afbb98f6c4dcadb2e2ae6ab9fa994bbb8c1d75f4fa96d340f9437ae454406 \
19+
--hash=sha256:642743b4750de17e655e6711601b077bc6598dbfa3ba5fa2b2a35ce12b508dff
20+
# via macholib
1721
astroid==3.3.11 \
1822
--hash=sha256:1e5a5011af2920c7c67a53f65d536d65bfa7116feeaf2354d8b94f29573bb0ce \
1923
--hash=sha256:54c760ae8322ece1abd213057c4b5bba7c49818853fc901ef09719a60dbf9dec
@@ -111,9 +115,9 @@ colorama==0.4.6 ; sys_platform == 'win32' \
111115
--hash=sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44 \
112116
--hash=sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6
113117
# via sphinx
114-
docutils==0.22.2 \
115-
--hash=sha256:9fdb771707c8784c8f2728b67cb2c691305933d68137ef95a75db5f4dfbc213d \
116-
--hash=sha256:b0e98d679283fc3bb0ead8a5da7f501baa632654e7056e9c5846842213d674d8
118+
docutils==0.21.2 \
119+
--hash=sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f \
120+
--hash=sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2
117121
# via
118122
# myst-parser
119123
# sphinx
@@ -137,9 +141,13 @@ jinja2==3.1.6 \
137141
# myst-parser
138142
# readthedocs-sphinx-ext
139143
# sphinx
140-
markdown-it-py==4.0.0 \
141-
--hash=sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147 \
142-
--hash=sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3
144+
macholib==1.16.3 \
145+
--hash=sha256:07ae9e15e8e4cd9a788013d81f5908b3609aa76f9b1421bae9c4d7606ec86a30 \
146+
--hash=sha256:0e315d7583d38b8c77e815b1ecbdbf504a8258d8b3e17b61165c6feb60d18f2c
147+
# via rules-python-docs (docs/pyproject.toml)
148+
markdown-it-py==3.0.0 \
149+
--hash=sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1 \
150+
--hash=sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb
143151
# via
144152
# mdit-py-plugins
145153
# myst-parser
@@ -264,6 +272,10 @@ pefile==2024.8.26 \
264272
--hash=sha256:3ff6c5d8b43e8c37bb6e6dd5085658d658a7a0bdcd20b6a07b1fcfc1c4e9d632 \
265273
--hash=sha256:76f8b485dcd3b1bb8166f1128d395fa3d87af26360c2358fb75b80019b957c6f
266274
# via rules-python-docs (docs/pyproject.toml)
275+
pyelftools==0.32 \
276+
--hash=sha256:013df952a006db5e138b1edf6d8a68ecc50630adbd0d83a2d41e7f846163d738 \
277+
--hash=sha256:6de90ee7b8263e740c8715a925382d4099b354f29ac48ea40d840cf7aa14ace5
278+
# via rules-python-docs (docs/pyproject.toml)
267279
pygments==2.19.2 \
268280
--hash=sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887 \
269281
--hash=sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b
@@ -432,39 +444,49 @@ sphinxcontrib-serializinghtml==2.0.0 \
432444
--hash=sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331 \
433445
--hash=sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d
434446
# via sphinx
435-
tomli==2.2.1 ; python_full_version < '3.11' \
436-
--hash=sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6 \
437-
--hash=sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd \
438-
--hash=sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c \
439-
--hash=sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b \
440-
--hash=sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8 \
441-
--hash=sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6 \
442-
--hash=sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77 \
443-
--hash=sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff \
444-
--hash=sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea \
445-
--hash=sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192 \
446-
--hash=sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249 \
447-
--hash=sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee \
448-
--hash=sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4 \
449-
--hash=sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98 \
450-
--hash=sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8 \
451-
--hash=sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4 \
452-
--hash=sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281 \
453-
--hash=sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744 \
454-
--hash=sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69 \
455-
--hash=sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13 \
456-
--hash=sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140 \
457-
--hash=sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e \
458-
--hash=sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e \
459-
--hash=sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc \
460-
--hash=sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff \
461-
--hash=sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec \
462-
--hash=sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2 \
463-
--hash=sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222 \
464-
--hash=sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106 \
465-
--hash=sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272 \
466-
--hash=sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a \
467-
--hash=sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7
447+
tomli==2.3.0 ; python_full_version < '3.11' \
448+
--hash=sha256:00b5f5d95bbfc7d12f91ad8c593a1659b6387b43f054104cda404be6bda62456 \
449+
--hash=sha256:0a154a9ae14bfcf5d8917a59b51ffd5a3ac1fd149b71b47a3a104ca4edcfa845 \
450+
--hash=sha256:0c95ca56fbe89e065c6ead5b593ee64b84a26fca063b5d71a1122bf26e533999 \
451+
--hash=sha256:0eea8cc5c5e9f89c9b90c4896a8deefc74f518db5927d0e0e8d4a80953d774d0 \
452+
--hash=sha256:1cb4ed918939151a03f33d4242ccd0aa5f11b3547d0cf30f7c74a408a5b99878 \
453+
--hash=sha256:4021923f97266babc6ccab9f5068642a0095faa0a51a246a6a02fccbb3514eaf \
454+
--hash=sha256:4c2ef0244c75aba9355561272009d934953817c49f47d768070c3c94355c2aa3 \
455+
--hash=sha256:4dc4ce8483a5d429ab602f111a93a6ab1ed425eae3122032db7e9acf449451be \
456+
--hash=sha256:4f195fe57ecceac95a66a75ac24d9d5fbc98ef0962e09b2eddec5d39375aae52 \
457+
--hash=sha256:5192f562738228945d7b13d4930baffda67b69425a7f0da96d360b0a3888136b \
458+
--hash=sha256:5e01decd096b1530d97d5d85cb4dff4af2d8347bd35686654a004f8dea20fc67 \
459+
--hash=sha256:64be704a875d2a59753d80ee8a533c3fe183e3f06807ff7dc2232938ccb01549 \
460+
--hash=sha256:70a251f8d4ba2d9ac2542eecf008b3c8a9fc5c3f9f02c56a9d7952612be2fdba \
461+
--hash=sha256:73ee0b47d4dad1c5e996e3cd33b8a76a50167ae5f96a2607cbe8cc773506ab22 \
462+
--hash=sha256:74bf8464ff93e413514fefd2be591c3b0b23231a77f901db1eb30d6f712fc42c \
463+
--hash=sha256:792262b94d5d0a466afb5bc63c7daa9d75520110971ee269152083270998316f \
464+
--hash=sha256:7b0882799624980785240ab732537fcfc372601015c00f7fc367c55308c186f6 \
465+
--hash=sha256:883b1c0d6398a6a9d29b508c331fa56adbcdff647f6ace4dfca0f50e90dfd0ba \
466+
--hash=sha256:88bd15eb972f3664f5ed4b57c1634a97153b4bac4479dcb6a495f41921eb7f45 \
467+
--hash=sha256:8a35dd0e643bb2610f156cca8db95d213a90015c11fee76c946aa62b7ae7e02f \
468+
--hash=sha256:940d56ee0410fa17ee1f12b817b37a4d4e4dc4d27340863cc67236c74f582e77 \
469+
--hash=sha256:97d5eec30149fd3294270e889b4234023f2c69747e555a27bd708828353ab606 \
470+
--hash=sha256:a0e285d2649b78c0d9027570d4da3425bdb49830a6156121360b3f8511ea3441 \
471+
--hash=sha256:a1f7f282fe248311650081faafa5f4732bdbfef5d45fe3f2e702fbc6f2d496e0 \
472+
--hash=sha256:a4ea38c40145a357d513bffad0ed869f13c1773716cf71ccaa83b0fa0cc4e42f \
473+
--hash=sha256:a56212bdcce682e56b0aaf79e869ba5d15a6163f88d5451cbde388d48b13f530 \
474+
--hash=sha256:ad805ea85eda330dbad64c7ea7a4556259665bdf9d2672f5dccc740eb9d3ca05 \
475+
--hash=sha256:b273fcbd7fc64dc3600c098e39136522650c49bca95df2d11cf3b626422392c8 \
476+
--hash=sha256:b5870b50c9db823c595983571d1296a6ff3e1b88f734a4c8f6fc6188397de005 \
477+
--hash=sha256:b74a0e59ec5d15127acdabd75ea17726ac4c5178ae51b85bfe39c4f8a278e879 \
478+
--hash=sha256:be71c93a63d738597996be9528f4abe628d1adf5e6eb11607bc8fe1a510b5dae \
479+
--hash=sha256:c22a8bf253bacc0cf11f35ad9808b6cb75ada2631c2d97c971122583b129afbc \
480+
--hash=sha256:c4665508bcbac83a31ff8ab08f424b665200c0e1e645d2bd9ab3d3e557b6185b \
481+
--hash=sha256:c5f3ffd1e098dfc032d4d3af5c0ac64f6d286d98bc148698356847b80fa4de1b \
482+
--hash=sha256:cebc6fe843e0733ee827a282aca4999b596241195f43b4cc371d64fc6639da9e \
483+
--hash=sha256:d1381caf13ab9f300e30dd8feadb3de072aeb86f1d34a8569453ff32a7dea4bf \
484+
--hash=sha256:d7d86942e56ded512a594786a5ba0a5e521d02529b3826e7761a05138341a2ac \
485+
--hash=sha256:e31d432427dcbf4d86958c184b9bfd1e96b5b71f8eb17e6d02531f434fd335b8 \
486+
--hash=sha256:e95b1af3c5b07d9e643909b5abbec77cd9f1217e6d0bca72b0234736b9fb1f1b \
487+
--hash=sha256:f85209946d1fe94416debbb88d00eb92ce9cd5266775424ff81bc959e001acaf \
488+
--hash=sha256:feb0dacc61170ed7ab602d3d972a58f14ee3ee60494292d384649a3dc38ef463 \
489+
--hash=sha256:ff72b71b5d10d22ecb084d345fc26f42b5143c5533db5e2eaba7d2d335358876
468490
# via
469491
# sphinx
470492
# sphinx-autodoc2

python/extensions/config.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _config_impl(mctx):
4343
config = module_extension(
4444
doc = """Global settings for rules_python.
4545
46-
:::{versionadded} VERSION_NEXT_FEATURE
46+
:::{versionadded} 1.7.0
4747
:::
4848
""",
4949
implementation = _config_impl,

python/features.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _features_typedef():
2626
True if the {obj}`@rules_python//python/cc:current_py_cc_headers_abi3`
2727
target is available.
2828
29-
:::{versionadded} VERSION_NEXT_FEATURE
29+
:::{versionadded} 1.7.0
3030
:::
3131
::::
3232

python/private/attributes.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ https://bazel.build/extending/config#memory-performance-considerations for
409409
more information about risks and considerations.
410410
:::
411411
412-
:::{versionadded} VERSION_NEXT_FEATURE
412+
:::{versionadded} 1.7.0
413413
:::
414414
""",
415415
),

python/private/common.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ PYTHON_FILE_EXTENSIONS = [
3636
"dylib", # Python C modules, Mac specific
3737
"py",
3838
"pyc",
39+
"pth", # import 'pth' files
3940
"pyi",
4041
"so", # Python C modules, usually Linux
4142
]

python/private/current_py_cc_headers.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ cc_library(
7676
)
7777
```
7878
79-
:::{versionadded} VERSION_NEXT_FEATURE
79+
:::{versionadded} 1.7.0
8080
:::
8181
""",
8282
)

0 commit comments

Comments
 (0)