Skip to content

Add ascii_tag_compiler(), a fused ASCII tag loader [+15% dxf reading speed] #2236

Add ascii_tag_compiler(), a fused ASCII tag loader [+15% dxf reading speed]

Add ascii_tag_compiler(), a fused ASCII tag loader [+15% dxf reading speed] #2236

Workflow file for this run

name: Test with C-extensions
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install with C-extensions
run: |
python -m pip install .
- name: Test with C-extensions
run: |
# install test dependencies
python -m pip install pytest Pillow
python -m pytest tests integration_tests