Skip to content

Commit

Permalink
Version 3.27.0rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
mborsetti committed Oct 29, 2024
1 parent 76e7eea commit 39cd8c9
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# # uses: pre-commit/[email protected]

test_ubuntu:
name: "Test ${{ matrix.python-version }} ${{ matrix.disable-gil && 'free-threaded' || '' }} on ${{ matrix.os }}"
name: "Test ${{ matrix.python-version }}${{ matrix.disable-gil && 't' || '' }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
# Identifies any jobs that must complete successfully before this job will run
# needs: [pre-commit]
Expand Down Expand Up @@ -125,18 +125,19 @@ jobs:
run: |
echo "PYTHON_GIL=0" >> $GITHUB_ENV
- name: Upgrade pip etc.
run: |
pip install --upgrade pip setuptools wheel
- name: Install build dependencies for Python 3.13t for wheel-less lxml (Linux)
# https://lxml.de/installation.html#installation
if: matrix.disable-gil && matrix.python-version == '3.13' && runner.os == 'Linux'
run: |
sudo apt-get -y update
sudo apt-get -y install libxml2-dev libxslt-dev python3-dev
sudo apt-get -y install libxml2-dev libxslt1-dev python3-dev
CFLAGS="-O0" pip install lxml
- name: Upgrade pip etc.
run: |
pip install --upgrade pip setuptools wheel
# - name: Install build dependencies for Python 3.10 for wheel-less lxml (Linux)
# # https://lxml.de/installation.html#installation
# if: matrix.python-version == '3.10.0-beta.4' && runner.os == 'Linux'
Expand Down

0 comments on commit 39cd8c9

Please sign in to comment.