We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d95702 commit 6ce4dbdCopy full SHA for 6ce4dbd
allure-python-commons/setup.py
@@ -1,4 +1,3 @@
1
-import sys
2
from setuptools import setup
3
4
PACKAGE = "allure-python-commons"
@@ -15,12 +14,10 @@
15
14
install_requires = [
16
"attrs>=16.0.0",
17
"six>=1.9.0",
18
- "pluggy>=0.4.0"
+ "pluggy>=0.4.0",
+ "enum34;python_version<'3.4'",
19
]
20
21
-if sys.version_info < (3, 4):
22
- install_requires.append("enum34")
23
-
24
25
def main():
26
setup(
@@ -39,5 +36,6 @@ def main():
39
36
py_modules=['allure', 'allure_commons']
40
37
)
41
38
+
42
if __name__ == '__main__':
43
main()
0 commit comments