File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22History
33#######
44
5- *********
6- 3.0.0 TBD
7- *********
5+ ***********************
6+ 3.0.0 (July 12th, 2021)
7+ ***********************
88* **[general] ** Breaking change: spaCy v3 required (closes `#8 `_)
99* **[init_parser] ** Breaking change: in all cases, :code: `is_tokenized ` now disables sentence segmentation
1010* **[init_parser] ** Breaking change: no more default values for parser or model anywhere. Important to note here that
1111 spaCy does not work with short-hand codes such as ``en `` any more. You have to provide the full model name, e.g.
1212 ``en_core_web_sm ``
13+ * **[init_parser] ** Improvement: models are automatically downloaded for Stanza and UDPipe
1314* **[cli] ** Reworked the position of the CLI script in the directory structure as well as the arguments. Run
1415 :code: `parse-as-conll -h ` for more information.
1516* **[conllparser] ** Made the `ConllParser `_ class available as a utility to easily create a wrapper for a spaCy-like
Original file line number Diff line number Diff line change 22Parsing to CoNLL with spaCy, spacy-stanza, and spacy-udpipe
33===========================================================
44
5- **This is a pre-release for the upcoming v3 of the library. If you experience any problems with it, please open a new **
6- `issue `_
7-
85**The last version to support spaCy v2 can be found ** `here `_
96
107This module allows you to parse text into `CoNLL-U format `_. You can use it as a command line tool, or embed it in your
Original file line number Diff line number Diff line change 1111
1212setup (
1313 name = "spacy_conll" ,
14- version = "3.0.0-rc3 " ,
14+ version = "3.0.0" ,
1515 description = "A custom pipeline component for spaCy that can convert any parsed Doc"
1616 " and its sentences into CoNLL-U format. Also provides a command line entry point." ,
1717 long_description = Path ("README.rst" ).read_text (encoding = "utf-8" ),
Original file line number Diff line number Diff line change 1- __version__ = "3.0.0-rc3 "
1+ __version__ = "3.0.0"
22
33from .formatter import ConllFormatter
44from .utils import init_parser
You can’t perform that action at this time.
0 commit comments