File tree 4 files changed +15
-7
lines changed
4 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 22
22
- name : Install dependencies
23
23
run : |
24
24
python3 -m pip install --upgrade pip
25
- pip3 install .[dev,torch]
25
+ pip3 install .[dev,torch,doctr ]
26
26
- name : Run lint
27
27
run : |
28
28
pip3 install .[lint]
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ v0.3.7 (2024-07-22)
5
+ -------------------
6
+ * Move ` doctr ` dependencies to a separate group
7
+ * Upgrade ` numpy ` version
8
+
4
9
v0.3.6 (2023-12-26)
5
10
-------------------
6
11
* Fix image orientation correction in ` SkewCorrector `
Original file line number Diff line number Diff line change 1
- 0.3.6
1
+ 0.3.7
Original file line number Diff line number Diff line change @@ -27,21 +27,24 @@ license = {file = "LICENSE"}
27
27
dynamic = [" version" ]
28
28
requires-python = " >=3.6"
29
29
dependencies = [
30
- " numpy>=1.22.0,<=1.26 .0" ,
30
+ " numpy>=1.22.0,<2 .0" ,
31
31
" opencv-python>=4.5.5.64,<=4.6.0.66" ,
32
- " pyclipper==1.3.0.post4" , # for doctr
33
32
" pytesseract>=0.3" ,
34
- " scikit_learn>=1.0.2,<=1.3.1" ,
35
- " shapely==2.0.1" , # for doctr
36
- " tqdm>=4" , # for doctr
33
+ " scikit_learn>=1.0.2,<=1.3.1"
37
34
]
38
35
39
36
[project .optional-dependencies ]
40
37
torch = [
41
38
" torch~=1.11.0" ,
42
39
" torchvision~=0.12.0"
43
40
]
41
+ doctr = [
42
+ " pyclipper==1.3.0.post4" ,
43
+ " shapely==2.0.1" ,
44
+ " tqdm>=4"
45
+ ]
44
46
dev = [
47
+ " importlib_metadata==7.2.1" ,
45
48
" build==0.10.0" ,
46
49
" twine==4.0.2"
47
50
]
You can’t perform that action at this time.
0 commit comments