@@ -70,7 +70,7 @@ py_package(
7070py_package (
7171 name = "example_pkg_with_data" ,
7272 packages = ["examples.wheel" ],
73- deps = [":main_with_gen_data" ]
73+ deps = [":main_with_gen_data" ],
7474)
7575
7676py_wheel (
@@ -99,7 +99,10 @@ py_wheel(
9999 distribution = "example_customized" ,
100100 entry_points = {
101101 "console_scripts" : ["another = foo.bar:baz" ],
102- "group2" : ["second = second.main:s" , "first = first.main:f" ]
102+ "group2" : [
103+ "second = second.main:s" ,
104+ "first = first.main:f" ,
105+ ],
103106 },
104107 homepage = "www.example.com" ,
105108 license = "Apache 2.0" ,
@@ -158,8 +161,8 @@ py_wheel(
158161py_wheel (
159162 name = "python_requires_in_a_package" ,
160163 distribution = "example_python_requires_in_a_package" ,
161- python_tag = "py3" ,
162164 python_requires = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" ,
165+ python_tag = "py3" ,
163166 version = "0.0.1" ,
164167 deps = [
165168 ":example_pkg" ,
@@ -172,8 +175,8 @@ py_wheel(
172175 python_tag = "py3" ,
173176 version = "0.0.1" ,
174177 deps = [
175- ":example_pkg_with_data"
176- ]
178+ ":example_pkg_with_data" ,
179+ ],
177180)
178181
179182py_wheel (
0 commit comments