File tree 2 files changed +4
-3
lines changed
Filter options
2 files changed +4
-3
lines changed
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- load ("@pip//:requirements.bzl" , "requirement" )
16
15
load ("@rules_python//python:defs.bzl" , "py_import" , "py_test" )
17
16
18
17
package (default_visibility = ["//visibility:public" ])
@@ -29,8 +28,11 @@ py_import(
29
28
# examples/py_import/helloworld.py=examples/legacy_pip_import/helloworld/helloworld.py \
30
29
# examples/__init__.py= \
31
30
# examples/py_import/__init__.py=
31
+ # TODO: we should construct an egg from local sources, or to make
32
+ # the example more meaningful for users, find an egg on the internet.
33
+ # Also it would help illustrate the rules if the egg has some other
34
+ # dependency, requiring deps here.
32
35
srcs = ["helloworld.egg" ],
33
- deps = [requirement ("futures" )],
34
36
)
35
37
36
38
py_test (
Original file line number Diff line number Diff line change 1
- futures >= 3.1
You can’t perform that action at this time.
0 commit comments