Skip to content

Commit bf09dc6

Browse files
author
Jonathon Belotti
authored
Update README
1 parent 37dad89 commit bf09dc6

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,23 @@ Contains Bazel rules to fetch and install Python dependencies from a requirement
66

77
In `requirements.txt`
88
```
9-
cryptography[test, docs]
10-
boto3
9+
cryptography[test, docs]==2.8
10+
boto3==1.9.253
1111
```
1212

1313
In `WORKSPACE`
1414
```
15-
load("@rules_pip//:defs.bzl", "pip_repository")
15+
rules_python_external_version = "37dad8910495ad71bae391db7a843a0f7a3ea902"
16+
17+
git_repository(
18+
name = "rules_python_external",
19+
commit = rules_python_external_version,
20+
remote = "[email protected]:dillon-giacoppo/rules_python_external.git",
21+
shallow_since = "1572846707 +1100",
22+
)
23+
24+
25+
load("@rules_python_external//:defs.bzl", "pip_repository")
1626
1727
pip_repository(
1828
name = "py_deps",

0 commit comments

Comments
 (0)