Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defaults:
env:
PYTHONUNBUFFERED: '1'
FORCE_COLOR: '1'
STABLE_PYTHON_VERSION: "3.11"
STABLE_PYTHON_VERSION: "3.13"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defaults:
shell: bash

env:
STABLE_PYTHON_VERSION: "3.11"
STABLE_PYTHON_VERSION: "3.13"

jobs:
test:
Expand Down
300 changes: 188 additions & 112 deletions build.rs

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

***Added:***

- Support Python 3.14
- Update default CPython distributions to 20250818

## 0.28.0 - 2025-07-17

***Added:***
Expand Down
1 change: 1 addition & 0 deletions docs/config/distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Setting the `PYAPP_PYTHON_VERSION` option will determine the distribution used a
| `3.11` |
| `3.12` |
| `3.13` |
| `3.14` |

The source for pre-built distributions is the [python-build-standalone](https://github.com/astral-sh/python-build-standalone) project.

Expand Down
2 changes: 1 addition & 1 deletion scripts/update_distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def main():
version = Version(raw_version)

# Skip prereleases for now
if version.pre is not None:
if version.pre is not None and version.pre[0] != 'rc':
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does this do?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was back when 3.14 was still in the RC phase, so this made sure it wasn't skipped.

continue

variant_start = 3 if 'apple' in remaining else 4
Expand Down