Skip to content

Commit 1ad26d0

Browse files
committed
rel 2024 update dependencies
1 parent 14529b9 commit 1ad26d0

File tree

4 files changed

+24
-25
lines changed

4 files changed

+24
-25
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All major and minor version changes will be documented in this file. Details of
44
patch-level version changes can be found in [commit messages](../../commits/master).
55

6+
## 2024 - 2024/01/07
7+
8+
- update dependencies
9+
610
## 2023.1 - 2023/06/25
711

812
- Add `asyncTrace` and `skimageTrace`

documentation/reference/svgtrace/index.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ OSError "svgtrace.trace/ asyncTrace is not supported in Windows Jupyter Notebook
3838
```python
3939
async def asyncTrace(
4040
filename: str, blackAndWhite: bool = False, mode: str = "default"
41-
) -> str:
42-
...
41+
) -> str: ...
4342
```
4443

4544

@@ -61,8 +60,7 @@ Do a trace of an pillow image using the skimage library.
6160
#### Signature
6261

6362
```python
64-
def skimageTrace(image: Image.Image) -> str:
65-
...
63+
def skimageTrace(image: Image.Image) -> str: ...
6664
```
6765

6866

@@ -92,8 +90,5 @@ FileNotFoundError f"{filename} does not exist!"
9290
#### Signature
9391

9492
```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+
```

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "svgtrace"
3-
version = "2023.1"
3+
version = "2024"
44
license = "mit"
55
description = "Leverage playwright and the imagetrace.js library to trace a bitmap to svg in python"
66
authors = ["FredHappyface"]
@@ -22,18 +22,18 @@ readme = "README.md"
2222

2323
[tool.poetry.dependencies]
2424
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"
3030

3131
[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"
3737
imgcompare = "^2.0.1"
3838

3939
[tool.black]

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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

0 commit comments

Comments
 (0)