Skip to content

Commit

Permalink
Merge pull request #134 from chonkie-ai/development
Browse files Browse the repository at this point in the history
[FIX] Remove tests for Py3.8 — Incompatible for support
  • Loading branch information
bhavnicksm authored Jan 4, 2025
2 parents 4c09a64 + b2aa570 commit 474082f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@ dependencies = [
[project.urls]
Homepage = "https://github.com/bhavnicksm/chonkie"
Documentation = "https://docs.chonkie.ai"

[project.optional-dependencies]
model2vec = ["model2vec>=0.1.0", "numpy>=1.23.0, <2.2"]
model2vec = ["model2vec>=0.3.0", "numpy>=1.23.0, <2.2"]
st = ["sentence-transformers>=3.0.0", "numpy>=1.23.0, <2.2"]
openai = ["openai>=1.0.0", "numpy>=1.23.0, <2.2"]
semantic = ["model2vec>=0.1.0", "numpy>=1.23.0, <2.2"]
all = ["sentence-transformers>=3.0.0", "numpy>=1.23.0, <2.2", "openai>=1.0.0", "model2vec>=0.1.0"]
semantic = ["model2vec>=0.3.0", "numpy>=1.23.0, <2.2"]
all = ["sentence-transformers>=3.0.0", "numpy>=1.23.0, <2.2", "openai>=1.0.0", "model2vec>=0.3.0"]
dev = [
"pytest>=6.2.0",
"pytest-cov>=4.0.0",
Expand All @@ -63,4 +64,4 @@ packages = ["chonkie",
"chonkie.refinery"]

[tool.ruff]
select = ["F", "I", "D", "DOC"]
select = ["F", "I", "D", "DOC"]

0 comments on commit 474082f

Please sign in to comment.