diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-07-02 00:32:38 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-07-02 00:32:38 +0200 |
commit | ae51fcf65f195e065987f379410d3f68c14f4a2b (patch) | |
tree | b4d55f210cfbf90847dc56a60058afa819107030 | |
parent | c7f0d0792dfb45e9fd6b7cdcb3ab0c208b7b6d07 (diff) | |
download | ghdl-ae51fcf65f195e065987f379410d3f68c14f4a2b.tar.gz ghdl-ae51fcf65f195e065987f379410d3f68c14f4a2b.tar.bz2 ghdl-ae51fcf65f195e065987f379410d3f68c14f4a2b.zip |
Changed dependency files. Fixed a typo.
-rwxr-xr-x | pyGHDL/cli/dom.py | 2 | ||||
-rw-r--r-- | pyGHDL/cli/requirements.txt | 5 | ||||
-rw-r--r-- | pyGHDL/dom/requirements.txt | 4 | ||||
-rw-r--r-- | pyGHDL/libghdl/requirements.txt | 1 | ||||
-rw-r--r-- | pyGHDL/lsp/requirements.txt | 1 | ||||
-rw-r--r-- | pyGHDL/requirements.txt | 10 |
6 files changed, 16 insertions, 7 deletions
diff --git a/pyGHDL/cli/dom.py b/pyGHDL/cli/dom.py index a50a69b12..2d0e85ea9 100755 --- a/pyGHDL/cli/dom.py +++ b/pyGHDL/cli/dom.py @@ -266,7 +266,7 @@ class Application(LineTerminal, ArgParseMixin): self.exit() # ---------------------------------------------------------------------------- - # create the sub-parser for the "token-stream" command + # Create the sub-parser for the "pretty" command # ---------------------------------------------------------------------------- @CommandAttribute( "pretty", diff --git a/pyGHDL/cli/requirements.txt b/pyGHDL/cli/requirements.txt new file mode 100644 index 000000000..4ea0fb1fd --- /dev/null +++ b/pyGHDL/cli/requirements.txt @@ -0,0 +1,5 @@ +-r ../dom/requirements.txt + +pyAttributes==2.1.0 +pyMetaClasses==1.2.1 +pyTerminalUI==1.3.4 diff --git a/pyGHDL/dom/requirements.txt b/pyGHDL/dom/requirements.txt new file mode 100644 index 000000000..66e3025ae --- /dev/null +++ b/pyGHDL/dom/requirements.txt @@ -0,0 +1,4 @@ +-r ../libghdl/requirements.txt + +pyVHDLModel==0.11.1 +#https://github.com/VHDL/pyVHDLModel/archive/dev.zip#pyVHDLModel diff --git a/pyGHDL/libghdl/requirements.txt b/pyGHDL/libghdl/requirements.txt new file mode 100644 index 000000000..b0f362aea --- /dev/null +++ b/pyGHDL/libghdl/requirements.txt @@ -0,0 +1 @@ +pydecor>=2.0.1 diff --git a/pyGHDL/lsp/requirements.txt b/pyGHDL/lsp/requirements.txt new file mode 100644 index 000000000..ae04e54bc --- /dev/null +++ b/pyGHDL/lsp/requirements.txt @@ -0,0 +1 @@ +-r ../libghdl/requirements.txt diff --git a/pyGHDL/requirements.txt b/pyGHDL/requirements.txt index 2e068ae44..0efc39c23 100644 --- a/pyGHDL/requirements.txt +++ b/pyGHDL/requirements.txt @@ -1,6 +1,4 @@ -pydecor>=2.0.1 -pyAttributes==2.1.0 -pyMetaClasses==1.2.1 -pyVHDLModel==0.11.1 -#https://github.com/VHDL/pyVHDLModel/archive/dev.zip#pyVHDLModel -pyTerminalUI==1.3.4 +-r libghdl/requirements.txt +-r dom/requirements.txt +-r lsp/requirements.txt +-r cli/requirements.txt |