Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ jobs:
env: ${{ fromJSON(inputs.envs) }}
shell: 'script -q -e -c "bash {0}"'
run: |
uname -a
lsb_release -a
for py in $(echo $PYTHON_TO_TEST | tr "," "\n")
do
$py --version
Expand Down Expand Up @@ -934,6 +934,7 @@ jobs:
- name: List Python packages
shell: 'script -q -e -c "bash {0}"'
run: |
lsb_release -a
if [[ "$BRANCH" == 'branch-3.5' || "$BRANCH" == 'branch-4.0' ]]; then
python3.9 --version
python3.9 -m pip list
Expand Down Expand Up @@ -1113,7 +1114,9 @@ jobs:
run: python3.9 -m pip list
- name: List Python packages
if: inputs.branch != 'branch-3.5' && inputs.branch != 'branch-4.0'
run: python3.11 -m pip list
run: |
lsb_release -a
python3.11 -m pip list
- name: Install dependencies for documentation generation
run: |
# Keep the version of Bundler here in sync with the following locations:
Expand Down