@@ -15,7 +15,7 @@ This GitHub Action allows using pyenv in your build.
1515Features:
1616=========
1717
18- - Installs pyenv ``2.3.8 ``.
18+ - Installs pyenv ``2.3.12 ``.
1919- Exports `PYENV_ROOT <https://github.com/pyenv/pyenv#environment-variables >`_ environment variable.
2020- Injects ``$PYENV_ROOT/bin `` in the PATH.
2121- Injects `pyenv shims <https://github.com/pyenv/pyenv#understanding-shims >`_ in the PATH.
3333Example
3434-------
3535
36- Installs python versions 3.6.8 and 3.7.5 with pyenv, upgrade pip for
36+ Installs python versions 3.8.16 and 3.9 with pyenv, upgrade pip for
3737each of them and run pytest.
3838
3939
@@ -50,8 +50,8 @@ each of them and run pytest.
5050 strategy :
5151 matrix :
5252 python :
53- - 3.6.8
54- - 3.7.5
53+ - 3.8.16
54+ - 3.9
5555
5656 steps :
5757 - uses : actions/checkout@v3
@@ -72,7 +72,7 @@ Enable multiple python versions in your github-action
7272
7373.. code :: yaml
7474
75- name : Using python 3.7.5 with pyenv
75+ name : Using python 3.9 with pyenv
7676 on : [push, pull_request]
7777
7878 jobs :
@@ -85,15 +85,15 @@ Enable multiple python versions in your github-action
8585 uses : " gabrielfalcao/pyenv-action@v11"
8686 with :
8787 default : 3.7.2
88- versions : 3.6.8 , 3.5.7
88+ versions : 3.8.16 , 3.5.7
8989
9090 # create virtualenv for each python version
9191
9292 - name : Create virtualenv for python 3.5.7
9393 run : pyenv local 3.5.7 && python3 -mvenv .venv357
9494
95- - name : Create virtualenv for python 3.6.8
96- run : pyenv local 3.6.8 && python3 -mvenv .venv365
95+ - name : Create virtualenv for python 3.8.16
96+ run : pyenv local 3.8.16 && python3 -mvenv .venv365
9797
9898 - name : Create virtualenv for python 3.7.2
9999 run : pyenv local 3.7.2 && python3 -mvenv .venv372
@@ -121,7 +121,7 @@ Example:
121121 - name : setup pyenv
122122 uses : " gabrielfalcao/pyenv-action@v9"
123123 with :
124- default : 3.7.5
124+ default : 3.9
125125
126126
127127 **versions **
0 commit comments