Skip to content

Commit 7eeabeb

Browse files
committed
build: a few tweaks to the nightly workflow
1 parent 44a309f commit 7eeabeb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/python-nightly.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,13 @@ jobs:
7676
- name: "Build Python ${{ matrix.python-version }}-dev"
7777
env:
7878
PYVER: "${{ matrix.python-version }}-dev"
79-
#PYTHON_CONFIGURE_OPTS: "--enable-shared --disable-test-modules"
8079
run: |
8180
set -xe
8281
export PYENV_ROOT="$HOME/.pyenv"
8382
export PATH="$PYENV_ROOT/bin:$PATH"
8483
echo "$PYENV_ROOT/shims:$PYENV_ROOT/bin" >> $GITHUB_PATH
8584
pyenv install $PYVER -v
8685
pyenv global $PYVER
87-
pyenv rehash
8886
8987
- name: "Show diagnostic info"
9088
run: |
@@ -103,6 +101,7 @@ jobs:
103101
run: |
104102
python -c "
105103
import sys
104+
print(f'{sys.version = }')
106105
assert sys.version.startswith('$EXPECTED'.strip('t'))
107106
assert getattr(sys, '_is_gil_enabled', lambda: True)() == (not '$EXPECTED'.endswith('t'))
108107
"

0 commit comments

Comments
 (0)