Skip to content

Commit cc2946e

Browse files
committed
update docs according to changes
1 parent 3a4f922 commit cc2946e

4 files changed

Lines changed: 18 additions & 17 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ BNLP is a natural language processing toolkit for Bengali Language. This tool wi
4242
```
4343
pip install -U bnlp_toolkit
4444
```
45-
- Python: 3.8, 3.9, 3.10, 3.11
45+
- Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
4646
- OS: Linux, Windows, Mac
4747

4848
### Build from source

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Table of contents
5959
```
6060
pip install -U bnlp_toolkit
6161
```
62-
- Python: 3.6, 3.7, 3.8, 3.9, 3.10
62+
- Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
6363
- OS: Linux, Windows, Mac
6464

6565

docs/REFACTORING_ANALYSIS.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -443,25 +443,26 @@ $ bnlp download all
443443

444444
| Dependency | Pinned | Latest | Risk |
445445
|------------|--------|--------|------|
446-
| `scipy==1.10.1` | Yes | 1.11+ | Security patches |
447-
| `gensim==4.3.2` | Yes | 4.3.3+ | Bug fixes |
448-
| `emoji==1.7.0` | Yes | 2.x | Breaking changes (API changed) |
449-
| `sklearn-crfsuite==0.3.6` | Yes | 0.5+ | Compatibility |
446+
| `scipy>=1.11.0` | No | 1.13+ | Updated for Python 3.12+ |
447+
| `gensim>=4.3.3` | No | 4.4+ | Updated for scipy compatibility |
448+
| `emoji>=2.0.0` | No | 2.15+ | Updated, code migrated to new API |
449+
| `sklearn-crfsuite>=0.5.0` | No | 0.5+ | Updated for Python 3.12+ |
450450

451451
### 6.2 Recommended Approach
452452

453453
```python
454454
install_requires=[
455-
"sentencepiece>=0.2.0,<0.3.0",
456-
"gensim>=4.3.0,<5.0.0",
457-
"nltk>=3.8",
458-
"numpy>=1.21",
459-
"scipy>=1.10.0,<2.0.0",
460-
"sklearn-crfsuite>=0.3.6,<1.0.0",
461-
"tqdm>=4.60.0",
462-
"ftfy>=6.0.0",
463-
"emoji>=1.7.0,<2.0.0", # Note: emoji 2.x has breaking changes
464-
"requests>=2.25.0",
455+
"sentencepiece>=0.2.0",
456+
"gensim>=4.3.3",
457+
"nltk",
458+
"numpy",
459+
"scipy>=1.11.0",
460+
"sklearn-crfsuite>=0.5.0",
461+
"tqdm>=4.66.3",
462+
"ftfy>=6.2.0",
463+
"emoji>=2.0.0",
464+
"requests",
465+
"symspellpy>=6.7.0",
465466
],
466467
```
467468

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ PIP installer
112112

113113
pip install -U bnlp_toolkit
114114

115-
- Python: 3.6, 3.7, 3.8, 3.9, 3.10
115+
- Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
116116
- OS: Linux, Windows, Mac
117117

118118
Pretrained Model

0 commit comments

Comments
 (0)