@@ -41,33 +41,33 @@ jobs:
4141 runs-on : ubuntu-latest
4242 name : pre-install default version
4343 steps :
44- - name : pyenv + python 3.7.15
44+ - name : pyenv + python 3.7.16
4545 id : pyenv
4646 uses : " gabrielfalcao/pyenv-action@v11"
4747 with :
48- default : 3.7.15
48+ default : 3.7.16
4949
50- - name : pyenv + python 3.7.15 cached
50+ - name : pyenv + python 3.7.16 cached
5151 id : pyenv2
5252 uses : " gabrielfalcao/pyenv-action@v11"
5353 with :
54- default : 3.7.15
54+ default : 3.7.16
5555
5656 - name : List python versions
5757 run : pyenv versions
5858
5959 - name : Verify default installation
60- run : python --version | grep 3.7.15
60+ run : python --version | grep 3.7.16
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.15 and 3.7.15
66+ - name : pyenv + python 3.6.15 and 3.7.16
6767 id : pyenv
6868 uses : " gabrielfalcao/pyenv-action@v11"
6969 with :
70- default : 3.7.15
70+ default : 3.7.16
7171 command : |
7272 pip install -U pip
7373 pip install -U setuptools
@@ -83,19 +83,19 @@ jobs:
8383 - name : Verify python 3.6.15 installation
8484 run : pyenv local 3.6.15 && python --version | grep 3.6.15
8585
86- - name : Verify python 3.7.15 installation
87- run : pyenv local 3.7.15 && python --version | grep 3.7.15
86+ - name : Verify python 3.7.16 installation
87+ run : pyenv local 3.7.16 && python --version | grep 3.7.16
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.15 and 3.7.15 with latest pip
94+ - name : Python 3.6.15 and 3.7.16 with latest pip
9595 id : pyenv
9696 uses : " gabrielfalcao/pyenv-action@v11"
9797 with :
98- default : 3.7.15
98+ default : 3.7.16
9999 command : |
100100 pip install -U pip
101101 pip install -U setuptools
@@ -111,5 +111,5 @@ jobs:
111111 - name : Verify pip version on python 3.6.15 installation
112112 run : pyenv local 3.6.15 && pip --version
113113
114- - name : Verify pip version on python 3.7.15 installation
115- run : pyenv local 3.7.15 && pip --version
114+ - name : Verify pip version on python 3.7.16 installation
115+ run : pyenv local 3.7.16 && pip --version
0 commit comments