@@ -41,75 +41,75 @@ jobs:
4141 runs-on : ubuntu-latest
4242 name : pre-install default version
4343 steps :
44- - name : pyenv + python 3.7.3
44+ - name : pyenv + python 3.7.15
4545 id : pyenv
4646 uses : " gabrielfalcao/pyenv-action@master"
4747 with :
48- default : 3.7.3
48+ default : 3.7.15
4949
50- - name : pyenv + python 3.7.3 cached
50+ - name : pyenv + python 3.7.15 cached
5151 id : pyenv2
5252 uses : " gabrielfalcao/pyenv-action@master"
5353 with :
54- default : 3.7.3
54+ default : 3.7.15
5555
5656 - name : List python versions
5757 run : pyenv versions
5858
5959 - name : Verify default installation
60- run : python --version | grep 3.7.3
60+ run : python --version | grep 3.7.15
6161
6262 integration_test_preinstall_versions :
6363 runs-on : ubuntu-latest
6464 name : pre-install multiple versions of python
6565 steps :
66- - name : pyenv + python 3.6.5 and 3.7.3
66+ - name : pyenv + python 3.6.15 and 3.7.15
6767 id : pyenv
6868 uses : " gabrielfalcao/pyenv-action@master"
6969 with :
70- default : 3.7.3
70+ default : 3.7.15
7171 command : |
7272 pip install -U pip
7373 pip install -U setuptools
7474
75- versions : 3.6.5 ,
75+ versions : 3.6.15 ,
7676
7777 - name : List python versions
7878 run : pyenv versions
7979
8080 - name : Verify default installation
8181 run : python --version
8282
83- - name : Verify python 3.6.5 installation
84- run : pyenv local 3.6.5 && python --version | grep 3.6.5
83+ - name : Verify python 3.6.15 installation
84+ run : pyenv local 3.6.15 && python --version | grep 3.6.15
8585
86- - name : Verify python 3.7.3 installation
87- run : pyenv local 3.7.3 && python --version | grep 3.7.3
86+ - name : Verify python 3.7.15 installation
87+ run : pyenv local 3.7.15 && python --version | grep 3.7.15
8888
8989
9090 integration_test_run_command_after_each_installation :
9191 runs-on : ubuntu-latest
9292 name : run command after installing each python version
9393 steps :
94- - name : Python 3.6.5 and 3.7.3 with latest pip
94+ - name : Python 3.6.15 and 3.7.15 with latest pip
9595 id : pyenv
9696 uses : " gabrielfalcao/pyenv-action@master"
9797 with :
98- default : 3.7.3
98+ default : 3.7.15
9999 command : |
100100 pip install -U pip
101101 pip install -U setuptools
102102
103- versions : 3.6.5 ,
103+ versions : 3.6.15 ,
104104
105105 - name : List python versions
106106 run : pyenv versions
107107
108108 - name : Verify default installation
109109 run : python --version
110110
111- - name : Verify pip version on python 3.6.5 installation
112- run : pyenv local 3.6.5 && pip --version
111+ - name : Verify pip version on python 3.6.15 installation
112+ run : pyenv local 3.6.15 && pip --version
113113
114- - name : Verify pip version on python 3.7.3 installation
115- run : pyenv local 3.7.3 && pip --version
114+ - name : Verify pip version on python 3.7.15 installation
115+ run : pyenv local 3.7.15 && pip --version
0 commit comments