Skip to content

Commit

Permalink
chore: bump version to 0.10.0alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
percevalw committed Oct 16, 2023
1 parent 222edff commit db0437e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,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.9.1
pip install edsnlp==0.10.0beta1
```

or if you want to use the trainable components (using pytorch)

```shell
pip install "edsnlp[ml]==0.9.1"
pip install "edsnlp[ml]==0.10.0beta1"
```

### A first pipeline
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v0.10.0.beta.1
## v0.10.0beta1

Large refacto of EDS-NLP to allow training models and performing inference using PyTorch
as the deep-learning backend. Rather than a mere wrapper of Pytorch using spaCy, this is
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.1
pip install edsnlp==0.10.0beta1
```

or if you want to use the trainable components (using pytorch)

```{: data-md-color-scheme="slate" }
pip install "edsnlp[ml]==0.9.1"
pip install "edsnlp[ml]==0.10.0beta1"
```

### A first pipeline
Expand Down
2 changes: 1 addition & 1 deletion edsnlp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
from .core.registry import registry
from . import language

__version__ = "0.9.1"
__version__ = "0.10.0beta1"

BASE_DIR = Path(__file__).parent

0 comments on commit db0437e

Please sign in to comment.