Skip to content

Update dependency aspect_rules_py to v1.11.5#23

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/aspect_rules_py-1.x
Open

Update dependency aspect_rules_py to v1.11.5#23
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/aspect_rules_py-1.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Oct 22, 2025

This PR contains the following updates:

Package Type Update Change
aspect_rules_py bazel_dep minor 1.6.51.11.5

Release Notes

aspect-build/rules_py (aspect_rules_py)

v1.11.5

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.11.5")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

  • test: add uv custom toolchain x86_64-apple-darwin hash by @​jbedard in #​968
  • test: ensure forward-compatible version of aspect_bazel_lib in e2e tests by @​jbedard in #​969

Full Changelog: aspect-build/rules_py@v1.11.4...v1.11.5

v1.11.2

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.11.2")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

Full Changelog: aspect-build/rules_py@v1.11.1...v1.11.2

v1.11.1

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.11.1")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_py@v1.10.1...v1.11.1

v1.10.1

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.10.1")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_py@v1.10.0...v1.10.1

v1.10.0

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.10.0")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_py@v1.9.1...v1.10.0

v1.9.1

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.9.1")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

Full Changelog: aspect-build/rules_py@v1.9.0...v1.9.1

v1.9.0

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.9.0")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

  • feat(uv): Support PEP 735 include-group syntax in dependency-groups by @​ctcjab in #​843
  • fix(uv): Reject unsupported wheel platform tags via allowlist by @​arrdem in #​844
  • feat(py_venv): Shell-less hermetic launcher for py_venv_binary by @​arrdem in #​825
  • feat(py): Python interpreter provisioning from python-build-standalone by @​arrdem in #​827
  • fix(py): Fix freethreaded e2e test for Bazel 9 on macOS by @​arrdem in #​846
  • fix(e2e): Add @​platforms//os:linux to OCI distroless exec tests by @​arrdem in #​847

New Contributors

Full Changelog: aspect-build/rules_py@v1.8.6...v1.9.0

v1.8.6

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.8.6")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_py@v1.8.5...v1.8.6

v1.8.5

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.8.5")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_py@v1.8.4...v1.8.5

v1.8.4

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.8.4")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

Using WORKSPACE

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_py",
    sha256 = "d02bb318336198afb282ae2380cdd23dc3f06a509bd2e63600efa656e91d8fb4",
    strip_prefix = "rules_py-1.8.4",
    url = "https://github.com/aspect-build/rules_py/releases/download/v1.8.4/rules_py-v1.8.4.tar.gz",
)

load("@​aspect_rules_py//py:repositories.bzl", "rules_py_dependencies")

rules_py_dependencies()

load("@​aspect_rules_py//py:toolchains.bzl", "rules_py_toolchains")

rules_py_toolchains()

# "Installation" for rules_python
load("@​rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains")

python_register_toolchains(
    name = "python_toolchain",
    python_version = "3.9",
)

py_repositories()

Full Changelog: aspect-build/rules_py@v1.8.3...v1.8.4

v1.8.3

Do not use

v1.6.6

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.6.6")

And also register a Python toolchain, see rules_python. For example:

# Minimum version needs:
# feat: add interpreter_version_info to py_runtime by @​mattem in #​1671
bazel_dep(name = "rules_python", version = "0.29.0", dev_dependency = True)

python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    configure_coverage_tool = True,
    python_version = "3.11",
)

Using WORKSPACE

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_py",
    sha256 = "54ce31edca66e48bf4d683904940b40c1977b14e0b3393f4caf06d2c19230b8a",
    strip_prefix = "rules_py-1.6.6",
    url = "https://github.com/aspect-build/rules_py/releases/download/v1.6.6/rules_py-v1.6.6.tar.gz",
)

# Fetches the rules_py dependencies.
# If you want to have a different version of some dependency,

# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've

# already fetched all the dependencies.
load("@​aspect_rules_py//py:repositories.bzl", "rules_py_dependencies")

rules_py_dependencies()

load("@​aspect_rules_py//py:toolchains.bzl", "rules_py_toolchains")

rules_py_toolchains()

# "Installation" for rules_python
load("@​rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains")

python_register_toolchains(
    name = "python_toolchain",
    python_version = "3.9",
)

py_repositories()

What's Changed

New Contributors

Full Changelog: aspect-build/rules_py@v1.6.5...v1.6.6


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.6.6 Update dependency aspect_rules_py to v1.8.4 Jan 15, 2026
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from 31d347d to 31c3b48 Compare January 15, 2026 11:08
@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.8.4 Update dependency aspect_rules_py to v1.8.5 Mar 6, 2026
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from 31c3b48 to 10bd10d Compare March 6, 2026 02:11
@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.8.5 Update dependency aspect_rules_py to v1.8.6 Mar 9, 2026
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from 10bd10d to 32c536b Compare March 9, 2026 13:36
@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.8.6 Update dependency aspect_rules_py to v1.9.0 Mar 11, 2026
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from 32c536b to e1e26fc Compare March 11, 2026 10:58
@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.9.0 Update dependency aspect_rules_py to v1.9.1 Mar 11, 2026
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from e1e26fc to 98b3c85 Compare March 11, 2026 21:15
@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.9.1 Update dependency aspect_rules_py to v1.10.0 Mar 20, 2026
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from 98b3c85 to a435705 Compare March 20, 2026 18:06
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from a435705 to be4b200 Compare April 6, 2026 00:40
@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.10.0 Update dependency aspect_rules_py to v1.10.1 Apr 6, 2026
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from be4b200 to 340e12e Compare April 6, 2026 20:36
@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.10.1 Update dependency aspect_rules_py to v1.11.1 Apr 6, 2026
@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.11.1 Update dependency aspect_rules_py to v1.11.2 Apr 7, 2026
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from 340e12e to d8834a1 Compare April 7, 2026 21:20
@renovate renovate Bot force-pushed the renovate/aspect_rules_py-1.x branch from d8834a1 to 0d7b826 Compare May 6, 2026 01:36
@renovate renovate Bot changed the title Update dependency aspect_rules_py to v1.11.2 Update dependency aspect_rules_py to v1.11.5 May 6, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants