Skip to content

Commit 43f1ca8

Browse files
charlesbeattietkoeppe
authored andcommitted
[WORKSPACE, bazel] Remove references to PY2 and funcsign
The funcsign module is no longer used by "tree".
1 parent 4f09b36 commit 43f1ca8

File tree

4 files changed

+1
-23
lines changed

4 files changed

+1
-23
lines changed

WORKSPACE

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,6 @@ http_archive(
4545
urls = ["https://github.com/abseil/abseil-py/archive/main.zip"],
4646
)
4747

48-
http_archive(
49-
name = "funcsigs_archive",
50-
build_file = "@//bazel:funcsigs.BUILD",
51-
strip_prefix = "funcsigs-1.0.2",
52-
urls = [
53-
"https://pypi.python.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz",
54-
],
55-
)
56-
5748
http_archive(
5849
name = "eigen_archive",
5950
build_file = "@//bazel:eigen.BUILD",

bazel/dm_env.BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ py_library(
1111
"dm_env/specs.py",
1212
],
1313
visibility = ["//visibility:public"],
14-
deps = ["@funcsigs_archive//:funcsigs"],
1514
)
1615

1716
py_library(

bazel/funcsigs.BUILD

Lines changed: 0 additions & 12 deletions
This file was deleted.

bazel/tree.BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ py_library(
2323
name = "tree",
2424
srcs = ["tree/__init__.py"],
2525
data = [":tree/_tree.so"],
26-
srcs_version = "PY2AND3",
26+
srcs_version = "PY3",
2727
visibility = ["@dm_env_archive//:__pkg__"],
2828
deps = [":sequence"],
2929
)

0 commit comments

Comments
 (0)