Skip to content

Commit 2c3d227

Browse files
committed
update readme
1 parent 4ae7e3a commit 2c3d227

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This GitHub Action allows using pyenv in your build.
1515
Features:
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.
@@ -33,7 +33,7 @@ Usage
3333
Example
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
3737
each 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

Comments
 (0)