Skip to content
This repository was archived by the owner on Dec 7, 2023. It is now read-only.
Merged
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/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Test with pytest
working-directory: python
run: poetry run pytest tests
run: poetry run pytest

publish-rust:
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/rust/')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manylinux_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Test with pytest
working-directory: python
run: poetry run pytest tests
run: poetry run pytest

- name: Install publishment tool
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/python/')
Expand Down
2 changes: 2 additions & 0 deletions python/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,5 @@ dmypy.json
.pyre/

.vscode/
.benchmarks
poetry.lock
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ name = "tokenizations"
crate-type = ["cdylib"]

[dependencies.pyo3]
version = "^0.13.0"
version = "^0.14"
features = ["extension-module"]
Loading