gabrielfalcao / pyenv-action

Enables pyenv within your github actions workflow
MIT License
39 stars 17 forks source link

Is it possible to use the --keep flag? #445

Open DavidAntliff opened 3 months ago

DavidAntliff commented 3 months ago

I'd like to use this action to build Python 3.12, but I need to provide the pyenv --keep flag, to retain the sources (I am building a compiled extension against Python 3.12). Is there any way to do this with this action?

The full command I want to run is:

$ env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 3.12.2 --keep