Skip to content

Commit

Permalink
remove version from nltk
Browse files Browse the repository at this point in the history
  • Loading branch information
sagorbrur committed Aug 20, 2024
1 parent a53fdcc commit 9ab6d49
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bnlp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = "4.0.2"
__version__ = "4.0.3"

import os
from bnlp.tokenizer.basic import BasicTokenizer
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
sentencepiece==0.2.0
gensim==4.3.2
nltk==3.8.2
numpy
scipy==1.10.1
sklearn-crfsuite==0.3.6
tqdm==4.66.3
ftfy==6.2.0
emoji==1.7.0
requests
nltk
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setuptools.setup(
name="bnlp_toolkit",
version="4.0.2",
version="4.0.3",
author="Sagor Sarker",
author_email="[email protected]",
description="BNLP is a natural language processing toolkit for Bengali Language",
Expand All @@ -22,7 +22,7 @@
install_requires=[
"sentencepiece==0.2.0",
"gensim==4.3.2",
"nltk==3.8.2",
"nltk",
"numpy",
"scipy==1.10.1",
"sklearn-crfsuite==0.3.6",
Expand Down

0 comments on commit 9ab6d49

Please sign in to comment.