diff --git a/README.md b/README.md index f30dca7d71..047ac37679 100644 --- a/README.md +++ b/README.md @@ -34,13 +34,13 @@ Check out our interactive [demo](https://aphp.github.io/edsnlp/demo/) ! You can install EDS-NLP via `pip`. We recommend pinning the library version in your projects, or use a strict package manager like [Poetry](https://python-poetry.org/). ```shell -pip install edsnlp==0.14.0 +pip install edsnlp==0.15.0 ``` or if you want to use the trainable components (using pytorch) ```shell -pip install "edsnlp[ml]==0.14.0" +pip install "edsnlp[ml]==0.15.0" ``` ### A first pipeline diff --git a/changelog.md b/changelog.md index eb24a6a2b8..a617c861f4 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -# Unreleased +# v0.15.0 (2024-12-13) ### Added diff --git a/docs/index.md b/docs/index.md index e3ac716109..3397951e23 100644 --- a/docs/index.md +++ b/docs/index.md @@ -15,13 +15,13 @@ Check out our interactive [demo](https://aphp.github.io/edsnlp/demo/) ! You can install EDS-NLP via `pip`. We recommend pinning the library version in your projects, or use a strict package manager like [Poetry](https://python-poetry.org/). ```{: data-md-color-scheme="slate" } -pip install edsnlp==0.14.0 +pip install edsnlp==0.15.0 ``` or if you want to use the trainable components (using pytorch) ```{: data-md-color-scheme="slate" } -pip install "edsnlp[ml]==0.14.0" +pip install "edsnlp[ml]==0.15.0" ``` ### A first pipeline diff --git a/docs/tutorials/training.md b/docs/tutorials/training.md index 7edb8b42ea..3ec95f1f9f 100644 --- a/docs/tutorials/training.md +++ b/docs/tutorials/training.md @@ -37,7 +37,7 @@ readme = "README.md" requires-python = ">3.7.1,<4.0" dependencies = [ - "edsnlp[ml]>=0.14.0", + "edsnlp[ml]>=0.15.0", "sentencepiece>=0.1.96" ] diff --git a/edsnlp/__init__.py b/edsnlp/__init__.py index 6206852146..a2391cc3ca 100644 --- a/edsnlp/__init__.py +++ b/edsnlp/__init__.py @@ -15,7 +15,7 @@ import edsnlp.pipes from . import reducers -__version__ = "0.14.0" +__version__ = "0.15.0" BASE_DIR = Path(__file__).parent diff --git a/pyproject.toml b/pyproject.toml index 035404148d..d096dd70bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ dependencies = [ "pysimstring>=1.2.1", "regex", "spacy>=3.2,<3.8", + "thinc<8.2.5", # we don't need thinc but spacy depdends on it 8.2.5 cause binary issues "confit>=0.7.3", "tqdm", "umls-downloader>=0.1.1",