File tree 1 file changed +9
-0
lines changed 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 42
42
with :
43
43
python-version : ${{ matrix.python }}
44
44
45
+ - run : python -c "import sysconfig; print(sysconfig.get_config_var('EXT_SUFFIX')); print(sysconfig.get_config_var('SOABI'))"
46
+
45
47
- name : Install
46
48
run : python -m pip --disable-pip-version-check install .[test]
47
49
99
101
run : git config --global --add safe.directory '*'
100
102
shell : C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}
101
103
104
+ - run : python -c 'import sysconfig; print(sysconfig.get_config_var("EXT_SUFFIX")); print(sysconfig.get_config_var("SOABI"))'
105
+ shell : C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}
106
+
102
107
- name : Get pip cache path
103
108
id : pip-cache-path
104
109
run : echo "path=$(cygpath -w $(python -m pip cache dir))" >> $GITHUB_OUTPUT
@@ -163,6 +168,8 @@ jobs:
163
168
wget https://github.com/pyston/pyston/releases/download/pyston_2.3.5/pyston_2.3.5_20.04_amd64.deb
164
169
sudo apt install $(pwd)/pyston_2.3.5_20.04_amd64.deb
165
170
171
+ - run : pyston -c 'import sysconfig; print(sysconfig.get_config_var("EXT_SUFFIX")); print(sysconfig.get_config_var("SOABI"))'
172
+
166
173
- name : Install
167
174
run : pyston -m pip --disable-pip-version-check install .[test]
168
175
@@ -211,6 +218,8 @@ jobs:
211
218
command -v python
212
219
python --version
213
220
221
+ - run : python -c 'import sysconfig; print(sysconfig.get_config_var("EXT_SUFFIX")); print(sysconfig.get_config_var("SOABI"))'
222
+
214
223
- name : Install
215
224
run : python -m pip --disable-pip-version-check install .[test]
216
225
You can’t perform that action at this time.
0 commit comments