Skip to content
Snippets Groups Projects
Commit c14dfb84 authored by Lukasz Pszenny's avatar Lukasz Pszenny
Browse files

Release 1.0.7

parent f52e60ae
No related branches found
No related tags found
No related merge requests found
Pipeline #10187 failed
......@@ -13,7 +13,7 @@
Clone this repository and install COMBO (we suggest creating a virtualenv/conda environment with Python 3.6+, as a bundle of required packages will be installed):
```bash
pip install -U pip setuptools wheel
pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.6
pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.7
```
For Python 3.9 you may also need to install cython:
```bash
......
......@@ -48,7 +48,7 @@ class _TokenList(conllu.TokenList):
return 'TokenList<' + ', '.join(token['token'] for token in self) + '>'
def sentence2conllu(sentence: Sentence, keep_semrel: bool = True) -> conllu.TokenList:
def sentence2conllu(sentence: Sentence, keep_semrel: bool = False) -> conllu.TokenList:
tokens = []
for token in sentence.tokens:
token_dict = collections.OrderedDict(dataclasses.asdict(token))
......
......@@ -2,7 +2,7 @@
Clone this repository and install COMBO (we suggest using virtualenv/conda with Python 3.6+):
```bash
pip install -U pip setuptools wheel
pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.6
pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.7
combo --helpfull
```
......@@ -11,7 +11,7 @@ combo --helpfull
python -m venv venv
source venv/bin/activate
pip install -U pip setuptools wheel
pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.6
pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.7
```
### Conda example:
......@@ -19,7 +19,7 @@ pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.6
conda create -n combo python=3.8
conda activate combo
pip install -U pip setuptools wheel
pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.6
pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.7
```
## Problems & solutions
......
......@@ -27,7 +27,7 @@ REQUIREMENTS = [
setup(
name='combo',
version='1.0.6',
version='1.0.7',
author='Mateusz Klimaszewski',
author_email='M.Klimaszewski@ii.pw.edu.pl',
install_requires=REQUIREMENTS,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment