@@ -41,33 +41,33 @@ jobs:
41
41
runs-on : ubuntu-latest
42
42
name : pre-install default version
43
43
steps :
44
- - name : pyenv + python 3.7.15
44
+ - name : pyenv + python 3.7.16
45
45
id : pyenv
46
46
uses : " gabrielfalcao/pyenv-action@v11"
47
47
with :
48
- default : 3.7.15
48
+ default : 3.7.16
49
49
50
- - name : pyenv + python 3.7.15 cached
50
+ - name : pyenv + python 3.7.16 cached
51
51
id : pyenv2
52
52
uses : " gabrielfalcao/pyenv-action@v11"
53
53
with :
54
- default : 3.7.15
54
+ default : 3.7.16
55
55
56
56
- name : List python versions
57
57
run : pyenv versions
58
58
59
59
- name : Verify default installation
60
- run : python --version | grep 3.7.15
60
+ run : python --version | grep 3.7.16
61
61
62
62
integration_test_preinstall_versions :
63
63
runs-on : ubuntu-latest
64
64
name : pre-install multiple versions of python
65
65
steps :
66
- - name : pyenv + python 3.6.15 and 3.7.15
66
+ - name : pyenv + python 3.6.15 and 3.7.16
67
67
id : pyenv
68
68
uses : " gabrielfalcao/pyenv-action@v11"
69
69
with :
70
- default : 3.7.15
70
+ default : 3.7.16
71
71
command : |
72
72
pip install -U pip
73
73
pip install -U setuptools
@@ -83,19 +83,19 @@ jobs:
83
83
- name : Verify python 3.6.15 installation
84
84
run : pyenv local 3.6.15 && python --version | grep 3.6.15
85
85
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
88
88
89
89
90
90
integration_test_run_command_after_each_installation :
91
91
runs-on : ubuntu-latest
92
92
name : run command after installing each python version
93
93
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
95
95
id : pyenv
96
96
uses : " gabrielfalcao/pyenv-action@v11"
97
97
with :
98
- default : 3.7.15
98
+ default : 3.7.16
99
99
command : |
100
100
pip install -U pip
101
101
pip install -U setuptools
@@ -111,5 +111,5 @@ jobs:
111
111
- name : Verify pip version on python 3.6.15 installation
112
112
run : pyenv local 3.6.15 && pip --version
113
113
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