fix an indefinite hang which would wait for events although no events
are pending - this happened if items arrive very quickly while the "reschedule-event" tried unconditionally avoiding a busy-loop and not schedule new work.
This commit is contained in:
4
setup.py
4
setup.py
@@ -10,7 +10,7 @@ from setuptools import setup
|
||||
|
||||
setup(
|
||||
name="pytest-xdist",
|
||||
version="1.0",
|
||||
version="1.1",
|
||||
description='py.test figleaf coverage plugin',
|
||||
long_description=__doc__,
|
||||
license='GPLv2 or later',
|
||||
@@ -21,7 +21,7 @@ setup(
|
||||
packages = ['xdist'],
|
||||
entry_points = {'pytest11': ['xdist = xdist.plugin'],},
|
||||
zip_safe=False,
|
||||
install_requires = ['execnet>=1.0.3', 'py>=1.2.0'],
|
||||
install_requires = ['execnet>=1.0.4', 'py>=1.2.0'],
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
|
||||
Reference in New Issue
Block a user