Skip to content

Commit

Permalink
TLDR-449 add intervals for numpy and opencv (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
dronperminov authored Sep 25, 2023
1 parent 21299dc commit dd93431
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

v0.3.2 (2023-09-25)
-------------------
* Add intervals to dependencies versions

v0.3.1 (2023-09-13)
-------------------
* Add float conversion for `rotated_angle` in `SkewCorrection`
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1
0.3.2
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.6"
dependencies = [
"numpy==1.23.3",
"opencv-python==4.6.0.66",
"numpy>=1.22.0,<=1.26.0",
"opencv-python>=4.5.5.64,<=4.6.0.66",
"pyclipper==1.3.0.post4", # for doctr
"pytesseract==0.3.10",
"scikit_learn==1.0.2",
"pytesseract>=0.3",
"scikit_learn>=1.0.2,<=1.3.1",
"shapely==2.0.1", # for doctr
"tqdm==4.65.0", # for doctr
"tqdm>=4", # for doctr
]

[project.optional-dependencies]
Expand Down

0 comments on commit dd93431

Please sign in to comment.