Skip to content

v0.6.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 17 Jul 19:21
· 3 commits to main since this release
b1a8c1d

See the changelog.

Using Bzlmod:

Add to your MODULE.bazel file:

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

Using WORKSPACE:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_pycross",
    sha256 = "cef7fd594645a72af17e6748cd0e47743720632ce5c0e9f6b640cce0d185eeb3",
    strip_prefix = "rules_pycross-0.6.1",
    url = "https://github.com/jvolkman/rules_pycross/releases/download/v0.6.1/rules_pycross-v0.6.1.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

Full Changelog: v0.6.0...v0.6.1