Skip to content

Commit

Permalink
Set version to 2.0.0.dev0
Browse files Browse the repository at this point in the history
Also:

- Set Python bound to >= 3.9, in line with spaCy 4.
- Update GHA to test 3.8 and 3.12.
  • Loading branch information
danieldk committed Apr 10, 2024
1 parent 89ce8f7 commit 16de647
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Configure Python version
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"
architecture: x64

- name: black
Expand All @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.11"]
python-version: ["3.9", "3.12"]
include:
- os: ubuntu-latest
hf-path: ~/.cache/huggingface/hub
Expand All @@ -65,6 +65,8 @@ jobs:
- name: Install optional dependencies for Japanese models
run: python -m pip install fugashi[unidic-lite] spacy[ja]
if: |
matrix.python_version == '3.9'
- name: Build sdist
run: python -m build --sdist
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
version = 1.0.0.dev0
version = 2.0.0.dev0
description = Curated transformer models for spaCy pipelines
url = https:/explosion/spacy-curated-transformers
author = Explosion
Expand All @@ -12,7 +12,7 @@ long_description_content_type = text/markdown
[options]
zip_safe = true
include_package_data = true
python_requires = >=3.8
python_requires = >=3.9
install_requires =
curated-transformers>=2.0.0.dev2,<3.0.0
curated-tokenizers>=0.9.2,<1.0.0
Expand Down

0 comments on commit 16de647

Please sign in to comment.