File tree 2 files changed +5
-3
lines changed 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 27
27
28
28
Thanks to `@RedBeardCode `_ for the PR(`#1664 `_)
29
29
30
+ * removed support code for python 3 < 3.3 addresssing (`#1627 `_)
30
31
31
32
.. _#607 : https://github.com/pytest-dev/pytest/issues/607
32
33
.. _#1519 : https://github.com/pytest-dev/pytest/pull/1519
33
34
.. _#1664 : https://github.com/pytest-dev/pytest/pull/1664
35
+ .. _#1627 : https://github.com/pytest-dev/pytest/pull/1627
34
36
35
37
36
38
2.10.0.dev1
Original file line number Diff line number Diff line change 13
13
'Topic :: Software Development :: Libraries' ,
14
14
'Topic :: Utilities' ] + [
15
15
('Programming Language :: Python :: %s' % x ) for x in
16
- '2 2.6 2.7 3 3.2 3. 3 3.4 3.5' .split ()]
16
+ '2 2.6 2.7 3 3.3 3.4 3.5' .split ()]
17
17
18
18
with open ('README.rst' ) as fd :
19
19
long_description = fd .read ()
@@ -51,10 +51,10 @@ def main():
51
51
install_requires = ['py>=1.4.29' ] # pluggy is vendored in _pytest.vendored_packages
52
52
extras_require = {}
53
53
if has_environment_marker_support ():
54
- extras_require [':python_version=="2.6" or python_version=="3.0" or python_version=="3.1" ' ] = ['argparse' ]
54
+ extras_require [':python_version=="2.6"' ] = ['argparse' ]
55
55
extras_require [':sys_platform=="win32"' ] = ['colorama' ]
56
56
else :
57
- if sys .version_info < (2 , 7 ) or ( 3 ,) <= sys . version_info < ( 3 , 2 ) :
57
+ if sys .version_info < (2 , 7 ):
58
58
install_requires .append ('argparse' )
59
59
if sys .platform == 'win32' :
60
60
install_requires .append ('colorama' )
You can’t perform that action at this time.
0 commit comments