Skip to content

Commit 6c0eb77

Browse files
alexmalyshevmeta-codesync[bot]
authored andcommitted
Specify CinderX needs 3.14.3
Summary: We're hitting ABI issues with internal CPython data structures when loading the OSS wheel with the latest CPython. We need to specify that we're on the latest point release right now. Reviewed By: yoney Differential Revision: D93138736 fbshipit-source-id: 29313d91fab4fd291e9f0ae5e7eabdd124ab9a3f
1 parent 1f61cb6 commit 6c0eb77

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v6
1515
with:
16-
python-version: 3.14
16+
python-version: 3.14.3
1717

1818
- name: Set up uv
19-
uses: astral-sh/setup-uv@v6
19+
uses: astral-sh/setup-uv@v7
2020

2121
- name: Create venv
22-
run: uv venv --python 3.14
22+
run: uv venv --python 3.14.3
2323

2424
- name: Build CinderX
25-
run: uv build --wheel --python 3.14
25+
run: uv build --wheel --python 3.14.3
2626

2727
- name: Install CinderX
2828
run: uv pip install dist/*.whl

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "cinderx"
77
description = "Extension aimed at improving the performance of the Python runtime"
88
dynamic = ["version"]
9-
requires-python = ">= 3.14, < 3.16"
9+
requires-python = ">= 3.14.3, < 3.16"
1010
readme = "README.md"
1111
license = "MIT"
1212
license-files = ["LICENSE"]

0 commit comments

Comments
 (0)