forked from chipsalliance/verible
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
six
Python package as anytree
dependency
- Loading branch information
Mariusz Glebocki
committed
Apr 4, 2021
1 parent
262a980
commit 9053c24
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
load("@rules_python//python:defs.bzl", "py_library") | ||
|
||
licenses(["unencumbered"]) # MIT | ||
|
||
py_library( | ||
name = "six", | ||
srcs = ["six.py"], | ||
visibility = ["//visibility:public"], | ||
srcs_version = "PY3", | ||
) |