Skip to content
This repository was archived by the owner on Dec 7, 2023. It is now read-only.

Commit 793ca90

Browse files
authored
Merge pull request #66 from explosion/update_pyo3
Update pyo3
2 parents 5967a6e + 68a3dc4 commit 793ca90

File tree

8 files changed

+25
-643
lines changed

8 files changed

+25
-643
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Test with pytest
5959
working-directory: python
60-
run: poetry run pytest tests
60+
run: poetry run pytest
6161

6262
publish-rust:
6363
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/rust/')

.github/workflows/manylinux_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Test with pytest
4646
working-directory: python
47-
run: poetry run pytest tests
47+
run: poetry run pytest
4848

4949
- name: Install publishment tool
5050
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/python/')

python/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,5 @@ dmypy.json
126126
.pyre/
127127

128128
.vscode/
129+
.benchmarks
130+
poetry.lock

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ name = "tokenizations"
1414
crate-type = ["cdylib"]
1515

1616
[dependencies.pyo3]
17-
version = "^0.13.0"
17+
version = "^0.14"
1818
features = ["extension-module"]

0 commit comments

Comments
 (0)