@@ -119,15 +119,9 @@ npm_install(
119
119
120
120
http_archive (
121
121
name = "rules_python" ,
122
- patches = [
123
- "//py:rules_python_any_version_wheel.patch" ,
124
- "//py:rules_python_wheel_directory_check.patch" ,
125
- ],
126
- sha256 = "ddb2e1298684defde2f5e466d96e572119f30f9e2a901a7a81474fd4fa9f6d52" ,
127
- strip_prefix = "rules_python-dd7f9c5f01bafbfea08c44092b6b0c8fc8fcb77f" ,
128
- urls = [
129
- "https://github.com/bazelbuild/rules_python/archive/dd7f9c5f01bafbfea08c44092b6b0c8fc8fcb77f.zip" ,
130
- ],
122
+ sha256 = "4d8ed66d5f57a0b6b90e495ca8e29e5c5fa353b93f093e7c31c595a4631ff293" ,
123
+ strip_prefix = "rules_python-5c948dcfd4ca79c2ed3a87636c46abba9f5836e9" ,
124
+ url = "https://github.com/bazelbuild/rules_python/archive/5c948dcfd4ca79c2ed3a87636c46abba9f5836e9.zip" ,
131
125
)
132
126
133
127
# This call should always be present.
@@ -136,19 +130,13 @@ load("@rules_python//python:repositories.bzl", "py_repositories")
136
130
py_repositories ()
137
131
138
132
# This one is only needed if you're using the packaging rules.
139
- load ("@rules_python//python:pip.bzl" , "pip3_import " , "pip_repositories" )
133
+ load ("@rules_python//python:pip.bzl" , "pip_install " , "pip_repositories" )
140
134
141
- pip3_import (
135
+ pip_install (
142
136
name = "dev_requirements" ,
143
137
requirements = "//py:requirements.txt" ,
144
138
)
145
139
146
- load ("@dev_requirements//:requirements.bzl" , "pip_install" )
147
-
148
- pip_repositories ()
149
-
150
- pip_install ()
151
-
152
140
http_archive (
153
141
name = "rules_pkg" ,
154
142
sha256 = "aeca78988341a2ee1ba097641056d168320ecc51372ef7ff8e64b139516a4937" ,
@@ -157,9 +145,9 @@ http_archive(
157
145
158
146
http_archive (
159
147
name = "io_bazel_rules_docker" ,
160
- sha256 = "4521794f0fba2e20f3bf15846ab5e01d5332e587e9ce81629c7f96c793bb7036 " ,
161
- strip_prefix = "rules_docker-0.14.4 " ,
162
- urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.14.4/rules_docker-v0.14.4.tar.gz " ],
148
+ sha256 = "a5007da3a22ce4d53a44e2a8d1895cdd8e41e8d7d11fae66840a112c5f4c00b1 " ,
149
+ strip_prefix = "rules_docker-cc45596d140b3b8651eb7b51b561f1bf72d1eea9 " ,
150
+ urls = ["https://github.com/bazelbuild/rules_docker/archive/cc45596d140b3b8651eb7b51b561f1bf72d1eea9.zip " ],
163
151
)
164
152
165
153
load (
@@ -173,11 +161,17 @@ load("@io_bazel_rules_docker//repositories:deps.bzl", container_deps = "deps")
173
161
174
162
container_deps ()
175
163
176
- load ("@io_bazel_rules_docker//repositories:pip_repositories.bzl" , "pip_deps" )
164
+ load (
165
+ "@io_bazel_rules_docker//repositories:pip_repositories.bzl" ,
166
+ "io_bazel_rules_docker_pip_deps" ,
167
+ )
177
168
178
- pip_deps ()
169
+ io_bazel_rules_docker_pip_deps ()
179
170
180
- load ("@io_bazel_rules_docker//container:container.bzl" , "container_pull" )
171
+ load (
172
+ "@io_bazel_rules_docker//container:container.bzl" ,
173
+ "container_pull" ,
174
+ )
181
175
182
176
container_pull (
183
177
name = "java_image_base" ,
0 commit comments