Skip to content

Commit

Permalink
Merge pull request #219 from mithro/liberty-utility
Browse files Browse the repository at this point in the history
Move `cell_parser.py` into own py_library.
  • Loading branch information
mithro authored Nov 11, 2023
2 parents 53a8adf + 4bb184a commit 858d1e3
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions pdk/liberty/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,19 @@ py_binary(
srcs_version = "PY3",
visibility = ["//visibility:public"],
deps = [
":cell_parser",
":liberty_utility",
requirement("absl-py"),
],
)

py_library(
name = "cell_parser",
name = "liberty_utility",
srcs = [
"cell_parser.py",
"liberty_utility.py",
],
deps = [
":cell_parser",
],
)

py_test(
Expand All @@ -45,7 +47,14 @@ py_test(
],
python_version = "PY3",
deps = [
":cell_parser",
":liberty_utility",
],
)

py_library(
name = "cell_parser",
srcs = [
"cell_parser.py",
],
)

Expand Down

0 comments on commit 858d1e3

Please sign in to comment.