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

Release 1.0.7

parent f52e60ae
Branches
No related merge requests found
Pipeline #10187 failed with stage
in 1 minute and 33 seconds
...@@ -13,7 +13,7 @@ ...@@ -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): 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 ```bash
pip install -U pip setuptools wheel 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: For Python 3.9 you may also need to install cython:
```bash ```bash
......
...@@ -48,7 +48,7 @@ class _TokenList(conllu.TokenList): ...@@ -48,7 +48,7 @@ class _TokenList(conllu.TokenList):
return 'TokenList<' + ', '.join(token['token'] for token in self) + '>' 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 = [] tokens = []
for token in sentence.tokens: for token in sentence.tokens:
token_dict = collections.OrderedDict(dataclasses.asdict(token)) token_dict = collections.OrderedDict(dataclasses.asdict(token))
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Clone this repository and install COMBO (we suggest using virtualenv/conda with Python 3.6+): Clone this repository and install COMBO (we suggest using virtualenv/conda with Python 3.6+):
```bash ```bash
pip install -U pip setuptools wheel 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 combo --helpfull
``` ```
...@@ -11,7 +11,7 @@ combo --helpfull ...@@ -11,7 +11,7 @@ combo --helpfull
python -m venv venv python -m venv venv
source venv/bin/activate source venv/bin/activate
pip install -U pip setuptools wheel 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: ### Conda example:
...@@ -19,7 +19,7 @@ pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.6 ...@@ -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 create -n combo python=3.8
conda activate combo conda activate combo
pip install -U pip setuptools wheel 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 ## Problems & solutions
......
...@@ -27,7 +27,7 @@ REQUIREMENTS = [ ...@@ -27,7 +27,7 @@ REQUIREMENTS = [
setup( setup(
name='combo', name='combo',
version='1.0.6', version='1.0.7',
author='Mateusz Klimaszewski', author='Mateusz Klimaszewski',
author_email='M.Klimaszewski@ii.pw.edu.pl', author_email='M.Klimaszewski@ii.pw.edu.pl',
install_requires=REQUIREMENTS, install_requires=REQUIREMENTS,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment