Skip to content

Commit 8e76760

Browse files
committed
2023
1 parent e7c1643 commit 8e76760

File tree

6 files changed

+18
-19
lines changed

6 files changed

+18
-19
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+
## 2023 - 2023/08/31
7+
8+
- Update deps
9+
610
## 2022 - 2022/01/23
711

812
- Bump pillow version (CVE-2022-22815, CVE-2022-22816, CVE-2022-22817)

documentation/reference/blendmodes/blend.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,4 @@ BlendType.XOR.
649649
```python
650650
def xor(background: np.ndarray, foreground: np.ndarray) -> np.ndarray:
651651
...
652-
```
653-
654-
652+
```

documentation/reference/blendmodes/blendtype.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,4 @@ DESTATOP = "bm:destatop", "destatop"
5151
```python
5252
class BlendType(str, MultiValueEnum):
5353
...
54-
```
55-
56-
54+
```

documentation/reference/blendmodes/imagetools.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,4 @@ def renderWAlphaOffset(
7474
offsets: tuple[int, int] = (0, 0),
7575
) -> Image.Image:
7676
...
77-
```
78-
79-
77+
```

pyproject.toml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "blendmodes"
3-
version = "2022"
3+
version = "2023"
44
license = "mit"
55
description = "Use this module to apply a number of blending modes to a background and foreground image"
66
authors = ["FredHappyface"]
@@ -22,17 +22,18 @@ readme = "README.md"
2222

2323
[tool.poetry.dependencies]
2424
python = ">=3.8,<4.0"
25-
Pillow = "<10,>=9.0.0"
25+
Pillow = "<11,>=10.0.0"
2626
numpy = "<2,>=1.22.1"
27-
aenum = "<4,>=3.1.7"
27+
aenum = "<4,>=3.1.15"
2828
deprecation = "<3,>=2.1.0"
2929

30-
[tool.poetry.dev-dependencies]
30+
31+
[tool.poetry.group.dev.dependencies]
3132
imgcompare = "^2.0.1"
32-
pytest = "^7.1.1"
33-
pylint = "^2.13.5"
34-
handsdown = "^1.1.0"
35-
coverage = "^6.3.2"
33+
pytest = "^7.4.0"
34+
pylint = "^2.17.5"
35+
handsdown = "^2.0.1"
36+
coverage = "^7.3.0"
3637

3738
[tool.black]
3839
line-length = 100

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Pillow<10,>=9.0.0
2-
aenum<4,>=3.1.7
1+
Pillow<11,>=10.0.0
2+
aenum<4,>=3.1.15
33
deprecation<3,>=2.1.0
44
numpy<2,>=1.22.1

0 commit comments

Comments
 (0)