Skip to content
Closed
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/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -42,11 +42,11 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest]
exclude:
- os: macos-latest
python-version: "3.9"
python-version: "3.10"
continue-on-error: true

steps:
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ license-files = [
"LICENSE",
]

requires-python = ">=3.9,<3.13"
requires-python = ">=3.10,<3.13"
dependencies = [
"spacy>=3.7.0,<3.9.0",
"scipy",
Expand All @@ -45,8 +45,7 @@ dependencies = [
# numpy needs to be constrained until spacy and nmslib are rebuilt
"numpy<2.0",
"joblib",
"nmslib>=1.7.3.6; python_version < '3.10'",
"nmslib-metabrainz==2.1.3; python_version >= '3.10'",
"nmslib-metabrainz==2.1.3",
"scikit-learn>=0.20.3",
"pysbd",
]
Expand Down
Loading