Skip to content

Commit 5ee89ca

Browse files
chore: update dependencies (#449)
- Update cargo dependencies and github-actions - Improve Python 3.14 support --------- Co-authored-by: Shantanu <shantanu@openai.com>
1 parent 2ab6d37 commit 5ee89ca

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build_wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python-version: [39, 310, 311, 312, 313, 313t, 314, 314t]
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424

2525
- uses: pypa/cibuildwheel@v3.1.4
2626
env:
@@ -43,7 +43,7 @@ jobs:
4343
python-version: [39, 310, 311, 312, 313, 313t, 314, 314t]
4444

4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747

4848
- name: Build wheels
4949
uses: pypa/cibuildwheel@v3.1.4
@@ -65,8 +65,8 @@ jobs:
6565
runs-on: ubuntu-latest
6666
timeout-minutes: 60
6767
steps:
68-
- uses: actions/checkout@v4
69-
- uses: actions/setup-python@v5
68+
- uses: actions/checkout@v5
69+
- uses: actions/setup-python@v6
7070
name: Install Python
7171
with:
7272
python-version: "3.9"

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ python = [
1414
]
1515

1616
[dependencies]
17-
pyo3 = { version = "0.25.1", default-features = false, features = [
17+
pyo3 = { version = "0.26", default-features = false, features = [
1818
"extension-module",
1919
"macros",
2020
], optional = true }
2121

2222
# tiktoken dependencies
23-
fancy-regex = "0.13.0"
23+
fancy-regex = "0.16"
2424
regex = "1.10.3"
25-
rustc-hash = "1.1.0"
25+
rustc-hash = "2"
2626
bstr = "1.5.0"

0 commit comments

Comments
 (0)