Skip to content

Commit dd93431

Browse files
authored
TLDR-449 add intervals for numpy and opencv (#12)
1 parent 21299dc commit dd93431

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
v0.3.2 (2023-09-25)
5+
-------------------
6+
* Add intervals to dependencies versions
7+
48
v0.3.1 (2023-09-13)
59
-------------------
610
* Add float conversion for `rotated_angle` in `SkewCorrection`

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.1
1+
0.3.2

pyproject.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ license = {file = "LICENSE"}
2727
dynamic = ["version"]
2828
requires-python = ">=3.6"
2929
dependencies = [
30-
"numpy==1.23.3",
31-
"opencv-python==4.6.0.66",
30+
"numpy>=1.22.0,<=1.26.0",
31+
"opencv-python>=4.5.5.64,<=4.6.0.66",
3232
"pyclipper==1.3.0.post4", # for doctr
33-
"pytesseract==0.3.10",
34-
"scikit_learn==1.0.2",
33+
"pytesseract>=0.3",
34+
"scikit_learn>=1.0.2,<=1.3.1",
3535
"shapely==2.0.1", # for doctr
36-
"tqdm==4.65.0", # for doctr
36+
"tqdm>=4", # for doctr
3737
]
3838

3939
[project.optional-dependencies]

0 commit comments

Comments
 (0)