Skip to content

Releases: bazel-contrib/rules_python

0.0.3

08 Sep 12:01

Choose a tag to compare

0.0.3 Pre-release
Pre-release

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

06 May 11:37
a0fbf98

Choose a tag to compare

0.0.2 Pre-release
Pre-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.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

09 Oct 04:25
9150caa

Choose a tag to compare

0.0.1 Pre-release
Pre-release

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.