jenkinsci / pyenv-pipeline-plugin

Execute commands in Python virtualenvs in Jenkins Pipeline DSL
https://plugins.jenkins.io/pyenv-pipeline/
MIT License
33 stars 15 forks source link

Try working around setuptools version limits #40

Open romuald opened 4 years ago

romuald commented 4 years ago

Workaround unsupported python version of setuptools:

The default behavior of virtualenv is to update pip/setuptools during creation. Since python < 3.5 would break virtualenv creation, add a --no-download option in that case

related to #39

romuald commented 4 years ago

(I actually have no idea how this could be improved by adding a parameter / option to the plugin since I have zero experience with Jenkins plugins)