File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -76,15 +76,13 @@ jobs:
76
76
- name : " Build Python ${{ matrix.python-version }}-dev"
77
77
env :
78
78
PYVER : " ${{ matrix.python-version }}-dev"
79
- # PYTHON_CONFIGURE_OPTS: "--enable-shared --disable-test-modules"
80
79
run : |
81
80
set -xe
82
81
export PYENV_ROOT="$HOME/.pyenv"
83
82
export PATH="$PYENV_ROOT/bin:$PATH"
84
83
echo "$PYENV_ROOT/shims:$PYENV_ROOT/bin" >> $GITHUB_PATH
85
84
pyenv install $PYVER -v
86
85
pyenv global $PYVER
87
- pyenv rehash
88
86
89
87
- name : " Show diagnostic info"
90
88
run : |
@@ -103,6 +101,7 @@ jobs:
103
101
run : |
104
102
python -c "
105
103
import sys
104
+ print(f'{sys.version = }')
106
105
assert sys.version.startswith('$EXPECTED'.strip('t'))
107
106
assert getattr(sys, '_is_gil_enabled', lambda: True)() == (not '$EXPECTED'.endswith('t'))
108
107
"
You can’t perform that action at this time.
0 commit comments