Skip to content

Commit

Permalink
v0.13.3 - Fix tree-sitter-python specification
Browse files Browse the repository at this point in the history
  • Loading branch information
benbrandt committed Jun 2, 2024
1 parent 04317e9 commit a3900eb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: |
set -e
pip install --no-index --find-links dist --force-reinstall semantic-text-splitter
pip install pytest tokenizers tree-sitter tree-sitter-python@git+https://github.com/tree-sitter/tree-sitter-python
pip install pytest tokenizers tree-sitter tree-sitter-python
pytest
linux:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
run: |
set -e
pip install --no-index --find-links dist --force-reinstall semantic-text-splitter
pip install pytest tokenizers tree-sitter tree-sitter-python@git+https://github.com/tree-sitter/tree-sitter-python
pip install pytest tokenizers tree-sitter tree-sitter-python
pytest
windows:
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
run: |
set -e
pip install --no-index --find-links dist --force-reinstall semantic-text-splitter
pip install pytest tokenizers tree-sitter tree-sitter-python@git+https://github.com/tree-sitter/tree-sitter-python
pip install pytest tokenizers tree-sitter tree-sitter-python
pytest
macos:
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
run: |
set -e
pip install --no-index --find-links dist --force-reinstall semantic-text-splitter
pip install pytest tokenizers tree-sitter tree-sitter-python@git+https://github.com/tree-sitter/tree-sitter-python
pip install pytest tokenizers tree-sitter tree-sitter-python
pytest
sdist:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.13.3

Fixes broken PyPI publish because of a bad dev dependency specification.

## v0.13.2

### What's New
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["bindings/*"]

[workspace.package]
version = "0.13.2"
version = "0.13.3"
authors = ["Ben Brandt <benjamin.j.brandt@gmail.com>"]
edition = "2021"
description = "Split text into semantic chunks, up to a desired chunk size. Supports calculating length by characters and tokens, and is callable from Rust and Python."
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test = [
"mypy",
"tokenizers",
"tree-sitter",
"tree-sitter-python@git+https://github.com/tree-sitter/tree-sitter-python",
"tree-sitter-python",
]
docs = ["pdoc"]

Expand Down

0 comments on commit a3900eb

Please sign in to comment.