Fix pyvenv on some operating systems#597
Conversation
|
Seems installing |
|
@treydock thanks for the PR! Are you able to add an acceptance test here as well? |
|
@bastelfreak Any suggestions on what kind of acceptance tests to add? There are already numerous tests for this defined type that the catalog applies successfully. The only thing I could think to test is that |
|
if I read this correctly, the code on master fails if you set the python version on debian 10 to 3.7? Is that something that can be validated with a test? |
|
I am fairly certain for at least Debian 10, which is one of the OSes where I encountered this, the Python 3 version installed is 3.7 so I just do something like this in my module: That's when I encountered the error for several Debian based operating systems. I was trying to switch my Globus module to Python 3 for all operating systems: treydock/puppet-module-globus#22 That is why I'm not sure why the existing acceptance tests didn't catch this because the code I'm using looks very similar to what's already being done. I think after looking more closely I see why the tests didn't catch this. If I set |
|
So this PR is not necessary if the |
|
I wonder if maybe a warning is the appropriate change. If |
|
Dear @treydock, thanks for the PR! This is Vox Pupuli Tasks, your friendly Vox Pupuli GitHub Bot. I noticed that your pull request contains merge conflict. Can you please rebase? You can find my sourcecode at voxpupuli/vox-pupuli-tasks |
Pull Request (PR) description
For Ubuntu 18.04 and Debian 10, ensure distutils is installed.
When testing pyvenv I ran into this problem when using Python 3 and noticed if you install
python3-venvinstead ofpython3.7-venvit pulls inpython3-distutilsbut rather than changing the behavior of how to installpython*-venvjust pulling in the dependency works.Failure with/without system packages
Solution: