From 2a42e50a61f740c5b7a5fd7eaa50f1b62275433d Mon Sep 17 00:00:00 2001 From: amir-zeldes Date: Thu, 29 Jun 2023 10:45:37 -0400 Subject: [PATCH] bump version --- hebpipe/lib/_version.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hebpipe/lib/_version.py b/hebpipe/lib/_version.py index 1a72bb5..ccb0c1f 100644 --- a/hebpipe/lib/_version.py +++ b/hebpipe/lib/_version.py @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -__version__ = "3.0.0.4" +__version__ = "3.0.0.5" __author__ = "Amir Zeldes" __copyright__ = "Copyright 2018-2023, Amir Zeldes" __license__ = "Apache 2.0 License" diff --git a/setup.py b/setup.py index 3ed7092..5ef6ea7 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name = 'hebpipe', packages = find_packages(), - version = '3.0.0.4', + version = '3.0.0.5', description = 'A pipeline for Hebrew NLP', author = 'Amir Zeldes', author_email = 'amir.zeldes@georgetown.edu', @@ -11,7 +11,7 @@ install_requires=['requests','numpy','gensim==3.8.3','transformers==3.5.1','torch==1.7.1','pandas','scipy','joblib','xgboost==0.81','rftokenizer','depedit','xmltodict', 'diaparser==1.1.2','flair==0.6.1','stanza','conllu','protobuf==3.20.*'], url = 'https://github.com/amir-zeldes/HebPipe', license='Apache License, Version 2.0', - download_url = 'https://github.com/amir-zeldes/HebPipe/releases/tag/v3.0.0.3', + download_url = 'https://github.com/amir-zeldes/HebPipe/releases/tag/v3.0.0.5', keywords = ['NLP', 'Hebrew', 'segmentation', 'tokenization', 'tagging', 'parsing','morphology','POS','lemmatization'], classifiers = ['Programming Language :: Python', 'Programming Language :: Python :: 2',