-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue #309: Add Python 3.9 support to spawnv_passfds() #310
Conversation
Python 3.9 added (umask, user, group, extra_groups) parameters to _posixsubprocess.fork_exec().
Without this change "tox -e py39" fails with:
|
pypy job of Travis CI failed on installing psutil:
It doesn't seem to be related to my PR. |
For the psutil, in my pyperf project, I used environment markers on the psutil dependency to workaround this PyPy issue:
https://github.com/vstinner/pyperf/blob/master/test-requirements.txt |
Hello. @auvipy approved my PR but it's not merged yet. How can I help to get his PR merged? |
I proposed a solution to skip psutil on PyPy in a previous comment. |
OK |
FYI this issue is tracked in Fedora as https://bugzilla.redhat.com/show_bug.cgi?id=1792056 (my commit has been backported manually) |
there will be a new release soon |
Python 3.9 added (umask, user, group, extra_groups) parameters to
_posixsubprocess.fork_exec().