Skip to content

Commit

Permalink
Merge pull request #29 from amir-zeldes/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
amir-zeldes authored Feb 25, 2020
2 parents 85b682b + 35467ff commit 65629a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion depedit/depedit.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import io
from six import iteritems

__version__ = "2.2.0"
__version__ = "2.2.0.1"

ALIASES = {"form":"text","upostag":"pos","xpostag":"cpos","feats":"morph","deprel":"func","deps":"head2","misc":"func2",
"xpos": "cpos","upos":"pos"}
Expand Down Expand Up @@ -321,6 +321,7 @@ def read_config_file(self, config_file, clear_transformations=False):

line_num = 0
for instruction in config_file:
instruction = instruction.strip()
line_num += 1
if len(instruction)>0 and not instruction.startswith(";") and not instruction.startswith("#") \
or instruction.startswith("#S:"):
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
setup(
name = 'depedit',
packages = ['depedit'],
version = '2.2.0',
version = '2.2.0.1',
description = 'A simple configurable tool for manipulating dependency trees',
author = 'Amir Zeldes',
author_email = '[email protected]',
url = 'https://github.com/amir-zeldes/depedit',
install_requires=["six"],
license='Apache License, Version 2.0',
download_url = 'https://github.com/amir-zeldes/depedit/releases/tag/2.2.0',
download_url = 'https://github.com/amir-zeldes/depedit/releases/tag/2.2.0.1',
keywords = ['NLP', 'parsing', 'syntax', 'dependencies', 'dependency', 'tree', 'treebank', 'conll', 'conllu', 'ud'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2',
Expand Down

0 comments on commit 65629a3

Please sign in to comment.