File tree Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,9 @@ bzl_library(
7575 name = "evaluate_markers_bzl" ,
7676 srcs = ["evaluate_markers.bzl" ],
7777 deps = [
78- ":pypi_repo_utils_bzl" ,
78+ ":pep508_env_bzl" ,
79+ ":pep508_evaluate_bzl" ,
80+ ":pep508_req_bzl" ,
7981 ],
8082)
8183
@@ -208,6 +210,33 @@ bzl_library(
208210 ],
209211)
210212
213+ bzl_library (
214+ name = "pep508_evaluate_bzl" ,
215+ srcs = ["pep508_evaluate.bzl" ],
216+ deps = [
217+ "//python/private:enum_bzl" ,
218+ "//python/private:semver_bzl" ,
219+ ],
220+ )
221+
222+ bzl_library (
223+ name = "pep508_req_bzl" ,
224+ srcs = ["pep508_req.bzl" ],
225+ deps = [
226+ "//python/private:normalize_name_bzl" ,
227+ ],
228+ )
229+
230+ bzl_library (
231+ name = "pep508_env_bzl" ,
232+ srcs = ["pep508_env.bzl" ],
233+ deps = [
234+ ":pep508_evaluate_bzl" ,
235+ ":pep508_req_bzl" ,
236+ "//python/private:normalize_name_bzl" ,
237+ ],
238+ )
239+
211240bzl_library (
212241 name = "pip_bzl" ,
213242 srcs = ["pip.bzl" ],
You can’t perform that action at this time.
0 commit comments