You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-03-31 14:42:53 -07:00
23 lines
827 B
Diff
23 lines
827 B
Diff
diff --git a/setup.py b/setup.py
|
|
index 30ee0575..42ab6f67 100644
|
|
--- setup.py
|
|
+++ setup.py
|
|
@@ -92,9 +92,14 @@ def default_environment():
|
|
for a in assignments:
|
|
if (len(a.targets) == 1 and
|
|
isinstance(a.targets[0], ast.Name) and
|
|
- a.targets[0].id == "__version__" and
|
|
- isinstance(a.value, ast.Str)):
|
|
- version = a.value.s
|
|
+ a.targets[0].id == "__version__"):
|
|
+ if hasattr(ast, "Str") and isinstance(a.value, ast.Str):
|
|
+ version = a.value.s
|
|
+ elif (hasattr(ast, "Constant")
|
|
+ and isinstance(a.value, ast.Constant)
|
|
+ and isinstance(a.value.value, str)):
|
|
+ version = a.value.value
|
|
+assert version is not None
|
|
|
|
setup(name='html5lib',
|
|
version=version,
|