Skip to content

Commit dd6c534

Browse files
committed
Remove py<1.5 restriction
Fix #2926
1 parent 4a0aea2 commit dd6c534

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changelog/2926.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove ``py<1.5`` restriction from ``pytest`` as this can cause version conflicts in some installations.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def has_environment_marker_support():
4343

4444

4545
def main():
46-
install_requires = ['py>=1.4.33,<1.5', 'setuptools'] # pluggy is vendored in _pytest.vendored_packages
46+
install_requires = ['py>=1.4.33', 'setuptools'] # pluggy is vendored in _pytest.vendored_packages
4747
extras_require = {}
4848
if has_environment_marker_support():
4949
extras_require[':python_version=="2.6"'] = ['argparse', 'ordereddict']

0 commit comments

Comments
 (0)