Skip to content

Releases: aspect-build/rules_py

v1.8.4

15 Jan 09:33
3b46164

Choose a tag to compare

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: v1.8.3...v1.8.4

v1.8.3

15 Jan 08:56
6a66702

Choose a tag to compare

Do not use

v1.8.2

14 Jan 03:44
dbc8805

Choose a tag to compare

Do not use

v1.8.1

14 Jan 03:14
a1485c6

Choose a tag to compare

Do not use

v1.8.0

14 Jan 02:38
93cdf3f

Choose a tag to compare

Do not use

v1.7.2

12 Dec 05:38
ff8e27f

Choose a tag to compare

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.7.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",
)

Using WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_py",
    sha256 = "4552ca9663d7cc8771b4669fd18779f8ce3cb99bae265e443f0330f3d1be4f3d",
    strip_prefix = "rules_py-1.7.2",
    url = "https://github.com/aspect-build/rules_py/releases/download/v1.7.2/rules_py-v1.7.2.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()

What's Changed

  • fix(uv): Venv config conditions to public by @arrdem in #749
  • fix: add tar.bzl as dep since its needed sdist_build by @thesayyn in #751

Full Changelog: v1.7.1...v1.7.2

v1.7.1

11 Dec 18:45
11a04f3

Choose a tag to compare

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.7.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",
)

Using WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_py",
    sha256 = "37f00178e42ce1afa73ecbebf3300c9dbb2285178d9eb3b5722f798a07c7a279",
    strip_prefix = "rules_py-1.7.1",
    url = "https://github.com/aspect-build/rules_py/releases/download/v1.7.1/rules_py-v1.7.1.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()

What's Changed

  • chore(deps): update ubuntu:latest docker digest to c35e29c by @renovate[bot] in #717
  • uv/host: Strip stdout of sw_vers on MacOS by @zsol in #719
  • chore(deps): update container_structure_test digest to 63ee63e by @renovate[bot] in #716
  • Some lockfile cleanup by @dzbarsky in #724
  • chore(deps): update bazel-contrib/.github action to v7.2.3 by @renovate[bot] in #728
  • chore(deps): update dependency bazel_lib to v3.0.0 by @renovate[bot] in #729
  • Remove usage of deprecated ctx.build_file_path by @dzbarsky in #726
  • Generate fewer targets for platform constraints by @dzbarsky in #727
  • Cleanup more config_setting_group usage by @dzbarsky in #732
  • fix(uv): Inline semver load by @arrdem in #735
  • fix(uv): Correct repo metadata usage & support pre-Bazel 8 by @arrdem in #736
  • chore: Upgrade tools_telemetry by @arrdem in #712
  • chore(deps): update dependency bzip2 to v1.0.8.bcr.3 by @renovate[bot] in #733
  • chore(deps): update dependency googleapis to v0.0.0-20251127-8cd3749f by @renovate[bot] in #734
  • fix(uv): Ensure normalization of build dep names by @arrdem in #742
  • fix(bazel9): CcInfo needs to come from rules_cc by @arrdem in #746
  • fix: unblock bcr by @thesayyn in #747

New Contributors

  • @zsol made their first contribution in #719

Full Changelog: v1.7.0...v1.7.1

v1.7.0

09 Nov 02:11

Choose a tag to compare

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.7.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",
)

Using WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_py",
    sha256 = "080a083244bb5307407e8099aabb1e0b8254d3af14c4c662a3841fcce05387f6",
    strip_prefix = "rules_py-1.7.0",
    url = "https://github.com/aspect-build/rules_py/releases/download/v1.7.0/rules_py-v1.7.0.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()

v1.6.6

22 Oct 00:07
340ac78

Choose a tag to compare

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

  • chore: switch to bzl_library that checks docs by @alexeagle in #655
  • tweak(py_venv): Don't modifying shell flags in activate by @jgsogo in #669
  • chore: remove generated docs by @alexeagle in #673
  • feat: publish stardocs on releases by @alexeagle in #672
  • fix(ci): Allow cancelling slow pre-commit job by @arrdem in #674
  • chore(ci): Move subrepo e2e tests to workflows by @arrdem in #675

New Contributors

Full Changelog: v1.6.5...v1.6.6

v1.6.5

14 Oct 22:17
8a557da

Choose a tag to compare

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

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

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 = "6aabfc2c2f3b6a8ad80e4dfc251cfae872417134c1982396b1fce77dc518a62c",
    strip_prefix = "rules_py-1.6.5",
    url = "https://github.com/aspect-build/rules_py/releases/download/v1.6.5/rules_py-v1.6.5.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

  • chore: Support --incompatible_disable_native_repo_rules by @arrdem in #659
  • chore: remove BCR homepage, as we now use the BCR UI itself by @alexeagle in #660
  • chore(deps): update ubuntu:latest docker digest to 66460d5 by @renovate[bot] in #663
  • chore: Add tests covering the version transition by @arrdem in #661
  • fix(venv): Don't use dirs as the interpreter by @arrdem in #665
  • chore(deps): Bump tools_telemetry by @arrdem in #667
  • fix(py_venv): Partially resolve PYTHONHOME by @arrdem in #668

Full Changelog: v1.6.4...v1.6.5