File tree Expand file tree Collapse file tree 4 files changed +24
-25
lines changed
documentation/reference/svgtrace Expand file tree Collapse file tree 4 files changed +24
-25
lines changed Original file line number Diff line number Diff line change 3
3
All major and minor version changes will be documented in this file. Details of
4
4
patch-level version changes can be found in [ commit messages] ( ../../commits/master ) .
5
5
6
+ ## 2024 - 2024/01/07
7
+
8
+ - update dependencies
9
+
6
10
## 2023.1 - 2023/06/25
7
11
8
12
- Add ` asyncTrace ` and ` skimageTrace `
Original file line number Diff line number Diff line change @@ -38,8 +38,7 @@ OSError "svgtrace.trace/ asyncTrace is not supported in Windows Jupyter Notebook
38
38
``` python
39
39
async def asyncTrace (
40
40
filename : str , blackAndWhite : bool = False , mode : str = " default"
41
- ) -> str :
42
- ...
41
+ ) -> str : ...
43
42
```
44
43
45
44
@@ -61,8 +60,7 @@ Do a trace of an pillow image using the skimage library.
61
60
#### Signature
62
61
63
62
``` python
64
- def skimageTrace (image : Image.Image) -> str :
65
- ...
63
+ def skimageTrace (image : Image.Image) -> str : ...
66
64
```
67
65
68
66
@@ -92,8 +90,5 @@ FileNotFoundError f"{filename} does not exist!"
92
90
#### Signature
93
91
94
92
``` python
95
- def trace (filename : str , blackAndWhite : bool = False , mode : str = " default" ) -> str :
96
- ...
97
- ```
98
-
99
-
93
+ def trace (filename : str , blackAndWhite : bool = False , mode : str = " default" ) -> str : ...
94
+ ```
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " svgtrace"
3
- version = " 2023.1 "
3
+ version = " 2024 "
4
4
license = " mit"
5
5
description = " Leverage playwright and the imagetrace.js library to trace a bitmap to svg in python"
6
6
authors = [" FredHappyface" ]
@@ -22,18 +22,18 @@ readme = "README.md"
22
22
23
23
[tool .poetry .dependencies ]
24
24
python = " ^3.9"
25
- playwright = " <2,>=1.35 .0"
26
- install-playwright = " <2,>=0.0.0 "
27
- scikit-image = " <2,>=0.21 .0"
28
- pillow = " <10 ,>=9.5 .0"
29
- numpy = " <2,>=1.25.0 "
25
+ playwright = " <2,>=1.40 .0"
26
+ install-playwright = " <2,>=0.0.1 "
27
+ scikit-image = " <2,>=0.22 .0"
28
+ pillow = " <11 ,>=10.2 .0"
29
+ numpy = " <2,>=1.26.3 "
30
30
31
31
[tool .poetry .group .dev .dependencies ]
32
- nocairosvg = " ^2023"
33
- pytest = " ^7.1.1 "
34
- pylint = " ^2.13.5 "
35
- handsdown = " ^1 .1.0"
36
- coverage = " ^6.3.2 "
32
+ nocairosvg = " ^2023.1 "
33
+ pytest = " ^7.4.4 "
34
+ pylint = " ^3.0.3 "
35
+ handsdown = " ^2 .1.0"
36
+ coverage = " ^7.4.0 "
37
37
imgcompare = " ^2.0.1"
38
38
39
39
[tool .black ]
Original file line number Diff line number Diff line change 1
- install-playwright < 2 ,>= 0.0.0
2
- numpy < 2 ,>= 1.25.0
3
- pillow < 10 ,>= 9.5 .0
4
- playwright < 2 ,>= 1.35 .0
5
- scikit-image < 2 ,>= 0.21 .0
1
+ install-playwright < 2 ,>= 0.0.1
2
+ numpy < 2 ,>= 1.26.3
3
+ pillow < 11 ,>= 10.2 .0
4
+ playwright < 2 ,>= 1.40 .0
5
+ scikit-image < 2 ,>= 0.22 .0
You can’t perform that action at this time.
0 commit comments