Skip to content

v0.7.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 23 Jan 06:44
· 1 commit to main since this release
656a226

See the changelog.

Using Bzlmod:

Add to your MODULE.bazel file:

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

Using WORKSPACE:

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

# change this to something that works in your environment.
load("@rules_pycross//pycross:repositories.bzl", "rules_pycross_dependencies")

rules_pycross_dependencies(
    python_interpreter_target = "@python_versions_3_12_0_host//:python",
)

What's Changed

Full Changelog: v0.7.0...v0.7.1

What's Changed

  • Remove the BUILD_WORKING_DIRECTORY boilerplate from tools by @jvolkman in #110
  • fix: int() is not callable, better error message by @tomemelko in #113
  • Update README with a Gazelle how-to by @wingsofovnia in #126
  • ci: re-align with bazel-contrib/rules-template by @betaboon in #129
  • Fix uv lockfile by @betaboon in #130
  • fix(uv): lockfile translation of pep735 dependency groups with uv 0.4.27 by @betaboon in #131
  • bugfix/issue-134-skip-path-dependencies by @njlr in #137
  • fix: Obtain default Python version for Python hub repo from versions.bzl file by @gfringeli in #138
  • feature/issue-95-poetry-dependency-groups by @njlr in #136
  • Support for rules_python >= 0.36.0 and Bazel 8.x by @betaboon in #133
  • fix: normalize darwin aarch64 -> arm64 by @jvolkman in #142
  • feat: add musl support by @jvolkman in #144
  • chore: example updates by @jvolkman in #145

New Contributors

Full Changelog: v0.6.1...v0.7.1