File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -81,10 +81,26 @@ jobs:
81
81
- uses : actions/checkout@v2
82
82
- name : Set up ${{ matrix.python.name }}
83
83
if : ${{ job.container == '' }}
84
- uses : actions/setup-python@v1
84
+ uses : actions/setup-python@v2
85
85
with :
86
86
python-version : ${{ matrix.python.action }}
87
87
architecture : x64
88
+ - name : Report Python information
89
+ shell : bash
90
+ run : |
91
+ python -c 'import sys; print(sys.version)'
92
+ echo
93
+ echo " <=======>"
94
+ echo
95
+ pip --version
96
+ echo
97
+ echo " <=======>"
98
+ echo
99
+ pip list --no-python-version-warning
100
+ echo
101
+ echo " <=======>"
102
+ echo
103
+ pip freeze --all --no-python-version-warning
88
104
- name : Install Linux Qt5 dependencies
89
105
if : matrix.os.python_platform == 'linux' && matrix.reactor.dependencies == 'qt5'
90
106
run : |
@@ -107,7 +123,7 @@ jobs:
107
123
steps :
108
124
- uses : actions/checkout@v2
109
125
- name : Set up Python ${{ matrix.python.dotted }}
110
- uses : actions/setup-python@v1
126
+ uses : actions/setup-python@v2
111
127
with :
112
128
python-version : ${{ matrix.python.dotted }}
113
129
architecture : x64
You can’t perform that action at this time.
0 commit comments