Releases: bazel-contrib/rules_python
Releases · bazel-contrib/rules_python
0.0.3
New Features
https://github.com/dillon-giacoppo/rules_python_external has been upstreamed into this project under experimental/
.
WORKSPACE setup
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", url = "https://github.com/bazelbuild/rules_python/releases/download/0.0.3/rules_python-0.0.3.tar.gz", sha256 = "e46612e9bb0dae8745de6a0643be69e8665a03f63163ac6610c210e80d14c3e4", ) load("@rules_python//python:repositories.bzl", "py_repositories") py_repositories()
Using the rules
See the source.
0.0.2
WORKSPACE setup
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", url = "https://github.com/bazelbuild/rules_python/releases/download/0.0.2/rules_python-0.0.2.tar.gz", strip_prefix = "rules_python-0.0.2", sha256 = "b5668cde8bb6e3515057ef465a35ad712214962f0b3a314e551204266c7be90c", ) load("@rules_python//python:repositories.bzl", "py_repositories") py_repositories() # Only needed if using the packaging rules. load("@rules_python//python:pip.bzl", "pip_repositories") pip_repositories()
Using the rules
See the source.
0.0.1
First versioned release.
WORKSPACE setup
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", url = "https://github.com/bazelbuild/rules_python/releases/download/0.0.1/rules_python-0.0.1.tar.gz", sha256 = "aa96a691d3a8177f3215b14b0edc9641787abaaa30363a080165d06ab65e1161", ) load("@rules_python//python:repositories.bzl", "py_repositories") py_repositories() # Only needed if using the packaging rules. load("@rules_python//python:pip.bzl", "pip_repositories") pip_repositories()
Using the rules
See the source.