mikitex70 / plantuml-markdown

PlantUML plugin for Python-Markdown
BSD 2-Clause "Simplified" License
192 stars 55 forks source link

There is no need to install uuid since Python 2.5 #60

Closed borystua closed 2 years ago

borystua commented 2 years ago
File "venv/lib/python3.8/site-packages/plantuml_markdown.py", line 67, in <module>
import uuid
File "venv/lib/python3.8/site-packages/uuid.py", line 138
if not 0 <= time_low < 1<<32L:
SyntaxError: invalid syntax

If venv has higher priority than global -> it leads to an Error (uuid installed was last time updated in 2006). UUID package is already included in Python

mikitex70 commented 2 years ago

Hi @borystua, thanks for pointing it out. The dependency is comes from a pull merge, I'm sorry I didn't check it more carefully. Your PR is merged as commit bb2ae9b. Thanks gain for your contribution.