python-plantuml icon indicating copy to clipboard operation
python-plantuml copied to clipboard

Package six is missing after installation

Open chbndrhnns opened this issue 5 years ago • 1 comments

Installing the package with pip install plantuml and afterwards running it with python -m plantuml fails due to the missing six package which needs to be installed manually:

python -m plantuml
\Traceback (most recent call last):
  File "/usr/local/lib/python3.6/runpy.py", line 193, in _run_module_as_main
    "__main__", mod_spec)
  File "/usr/local/lib/python3.6/runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "/usr/local/lib/python3.6/site-packages/plantuml.py", line 13, in <module>
    import six
ModuleNotFoundError: No module named 'six'

chbndrhnns avatar Jan 02 '20 10:01 chbndrhnns

I think 'six' needs to be added to install_requires.

jacebrowning avatar Feb 16 '20 18:02 jacebrowning