v1.0.4
Pre-release
Pre-release
This version was never published to BCR. Use v1.0.7
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "com_github_caseyduquettesc_rules_python_pytest", version = "1.0.4", repo_name = "rules_python_pytest")
Using WORKSPACE
Paste this snippet into your file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_python_pytest",
sha256 = "76dab506fa9ebc958f8974a38ad7e45ed3e1695267925955970282ff2b97a6b9",
strip_prefix = "rules_python_pytest-1.0.4",
url = "https://github.com/caseyduquettesc/rules_python_pytest/releases/download/v1.0.4/rules_python_pytest-v1.0.4.tar.gz",
)
load("@rules_python_pytest//python_pytest:repositories.bzl", "rules_python_pytest_dependencies")
rules_python_pytest_dependencies()
What's Changed
- Enable bzlmod by @caseyduquettesc in #4
New Contributors
- @caseyduquettesc made their first contribution in #4
Full Changelog: v1.0.3...v1.0.4