Skip to content
Open
Show file tree
Hide file tree
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
9 changes: 3 additions & 6 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
env:
CIBW_BUILD: "cp3{8..14}{t,}-${{ matrix.wheel_type }}"
CIBW_ARCHS_LINUX: auto
CIBW_ENABLE: cpython-prerelease
CIBW_ENABLE: cpython-prerelease cpython-freethreading
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.wheel_type }}-wheels
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
steps:
- uses: actions/checkout@v5
- name: Set up Python
Expand All @@ -137,10 +137,7 @@ jobs:
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install -qy \
gdb \
python${{matrix.python_version}}-dev \
python${{matrix.python_version}}-dbg
sudo apt-get install -qy gdb
- name: Install Python dependencies
run: |
python${{matrix.python_version}} -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ valgrind: ## Run valgrind, with the correct configuration
.PHONY: ccoverage
ccoverage: ## Run the test suite, with C++ code coverage
$(MAKE) clean
CFLAGS="$(CFLAGS) -O0 -pg --coverage" $(MAKE) build
CFLAGS="$(CFLAGS) -O0 -pg --coverage" CXXFLAGS="$(CXXFLAGS) -O0 -pg --coverage" $(MAKE) build
$(MAKE) check
gcov -i build/*/src/pystack/_pystack -i -d
lcov --capture --directory . --output-file cppcoverage.lcov
Expand Down
1 change: 1 addition & 0 deletions news/271.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Provide wheels for free-threaded builds of Python 3.13