Skip to content

Commit 1aae5ed

Browse files
authored
add python_requires directive to allure-python (via #599)
1 parent 4c7a608 commit 1aae5ed

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

allure-behave/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@
1010
'Topic :: Software Development :: Quality Assurance',
1111
'Topic :: Software Development :: Testing',
1212
'Topic :: Software Development :: Testing :: BDD',
13-
'Programming Language :: Python :: 2',
14-
'Programming Language :: Python :: 2.7',
1513
'Programming Language :: Python :: 3',
14+
'Programming Language :: Python :: 3 :: Only',
1615
'Programming Language :: Python :: 3.6',
1716
'Programming Language :: Python :: 3.7',
1817
'Programming Language :: Python :: 3.8',

allure-nose2/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
'Topic :: Software Development :: Quality Assurance',
1111
'Topic :: Software Development :: Testing',
1212
'Programming Language :: Python :: 3',
13+
'Programming Language :: Python :: 3 :: Only',
1314
'Programming Language :: Python :: 3.6',
1415
'Programming Language :: Python :: 3.7',
1516
'Programming Language :: Python :: 3.8',

allure-pytest-bdd/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
'License :: OSI Approved :: Apache Software License',
1111
'Topic :: Software Development :: Quality Assurance',
1212
'Topic :: Software Development :: Testing',
13+
'Programming Language :: Python :: 3',
14+
'Programming Language :: Python :: 3 :: Only',
1315
]
1416

1517
setup_requires = [

allure-pytest/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
'License :: OSI Approved :: Apache Software License',
2323
'Topic :: Software Development :: Quality Assurance',
2424
'Topic :: Software Development :: Testing',
25+
'Programming Language :: Python :: 3',
26+
'Programming Language :: Python :: 3 :: Only',
2527
]
2628

2729
setup_requires = [

allure-python-commons/setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
'License :: OSI Approved :: Apache Software License',
99
'Topic :: Software Development :: Quality Assurance',
1010
'Topic :: Software Development :: Testing',
11+
'Programming Language :: Python :: 3',
12+
'Programming Language :: Python :: 3 :: Only',
1113
]
1214

1315
install_requires = [
@@ -33,7 +35,8 @@ def main():
3335
packages=["allure_commons"],
3436
package_dir={"allure_commons": 'src'},
3537
install_requires=install_requires,
36-
py_modules=['allure', 'allure_commons']
38+
py_modules=['allure', 'allure_commons'],
39+
python_requires='>=3.5'
3740
)
3841

3942

allure-robotframework/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
'License :: OSI Approved :: Apache Software License',
1212
'Topic :: Software Development :: Quality Assurance',
1313
'Topic :: Software Development :: Testing',
14+
'Programming Language :: Python :: 3',
15+
'Programming Language :: Python :: 3 :: Only',
1416
]
1517

1618
setup_requires = [

0 commit comments

Comments
 (0)