Skip to content

Commit

Permalink
Removal of implicit dependency on py
Browse files Browse the repository at this point in the history
`pytest-xdist` depends on `pytest>=3`.
`pytest 3.0.0` requires `py>=1.4.29`
and latest pytest requires `py>=1.4.33`.
Thus it is unnecessary for pytest-xdist to include
a requirement on `py>=1.4.22`

Fixes pytest-dev#105
  • Loading branch information
jayvdb committed Jul 14, 2017
1 parent 3652e21 commit 3b0bb46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog/105.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removal of implicit dependency on incorrect version of py.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
],
},
zip_safe=False,
install_requires=['execnet>=1.1', 'pytest>=3.0.0', 'py>=1.4.22'],
install_requires=['execnet>=1.1', 'pytest>=3.0.0'],
setup_requires=['setuptools_scm'],
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 3b0bb46

Please sign in to comment.