11
0

Accepting request 541211 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/541211
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-execnet?expand=0&rev=4
This commit is contained in:
2017-11-15 15:57:23 +00:00
committed by Git OBS Bridge
parent a859742eb9
commit 5d48ddf562
4 changed files with 29 additions and 5 deletions

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Sat Nov 11 17:20:57 UTC 2017 - arun@gmx.de
- specfile
* CHANGELOG -> CHANGELOG.rst
* README.txt -> README.rst
- update to version 1.5.0:
* support shell escaping in python pathnames of popen.
Eugene Ciurana discovered that execnet breaks if you use pathnames
with spaces in a "python=" part of a spec. We now use shlex.split
to split the string. There is a potential for regressions if you
used quote or escape sequences as part of your python command.
* Only insert importdir into sys.path if it is not already in the
path.
This prevents a bug when using enum34 with python 3.6 and
pytest-xdist.
The issue is that enum34 installs an 'enum' module in
site-packages which is normally shadowed by the stdlib version of
enum, however in gateway_bootstrap.py site-packages is added at
the front the the search path. This means on the workers enum34 is
hit for import enum which in turn causes import re to fail (as it
makes use of the new enum features in 3.6).
-------------------------------------------------------------------
Fri Apr 21 20:01:07 UTC 2017 - aloisio@gmx.com