Skip to content

v0.5.2

Compare
Choose a tag to compare
@github-actions github-actions released this 02 Feb 23:40
· 35 commits to main since this release

See the changelog.

Using Bzlmod:

Add to your MODULE.bazel file:

bazel_dep(name = "rules_pycross", version = "0.5.2")

Using WORKSPACE:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_pycross",
    sha256 = "cfa3cdc7ce8b224f19fad68f29af2478fa680aed7a42435b0ab2bdcda4d72b9f",
    strip_prefix = "rules_pycross-0.5.2",
    url = "https://github.com/jvolkman/rules_pycross/releases/download/v0.5.2/rules_pycross-v0.5.2.tar.gz",
)

# change this to something that works in your environment.
load("@python//3.12.0:defs.bzl", python_interpreter = "interpreter")

load("@rules_pycross//pycross:repositories.bzl", "rules_pycross_dependencies")
rules_pycross_dependencies(python_interpreter)

What's Changed

  • dev/fix smoke test cache by @jvolkman in #73
  • Fix toolchain resolution issue when default version < requested version in lexicographical order by @jvolkman in #74
  • Adds requirements.bzl to lock_repo by @jvolkman in #75
  • Rename tests/smoke* -> e2e/ by @jvolkman in #76
  • Use GLIBC 2.28 as default by @jvolkman in #77
  • Fix toolchain config when default python version is X.Y instead of X.Y.Z by @jvolkman in #78

Full Changelog: v0.5.1...v0.5.2