Skip to content

Commit

Permalink
2023
Browse files Browse the repository at this point in the history
  • Loading branch information
FredHappyface committed Aug 31, 2023
1 parent e7c1643 commit 8e76760
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 19 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All major and minor version changes will be documented in this file. Details of
patch-level version changes can be found in [commit messages](../../commits/master).

## 2023 - 2023/08/31

- Update deps

## 2022 - 2022/01/23

- Bump pillow version (CVE-2022-22815, CVE-2022-22816, CVE-2022-22817)
Expand Down
4 changes: 1 addition & 3 deletions documentation/reference/blendmodes/blend.md
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,4 @@ BlendType.XOR.
```python
def xor(background: np.ndarray, foreground: np.ndarray) -> np.ndarray:
...
```


```
4 changes: 1 addition & 3 deletions documentation/reference/blendmodes/blendtype.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,4 @@ DESTATOP = "bm:destatop", "destatop"
```python
class BlendType(str, MultiValueEnum):
...
```


```
4 changes: 1 addition & 3 deletions documentation/reference/blendmodes/imagetools.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,4 @@ def renderWAlphaOffset(
offsets: tuple[int, int] = (0, 0),
) -> Image.Image:
...
```


```
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "blendmodes"
version = "2022"
version = "2023"
license = "mit"
description = "Use this module to apply a number of blending modes to a background and foreground image"
authors = ["FredHappyface"]
Expand All @@ -22,17 +22,18 @@ readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
Pillow = "<10,>=9.0.0"
Pillow = "<11,>=10.0.0"
numpy = "<2,>=1.22.1"
aenum = "<4,>=3.1.7"
aenum = "<4,>=3.1.15"
deprecation = "<3,>=2.1.0"

[tool.poetry.dev-dependencies]

[tool.poetry.group.dev.dependencies]
imgcompare = "^2.0.1"
pytest = "^7.1.1"
pylint = "^2.13.5"
handsdown = "^1.1.0"
coverage = "^6.3.2"
pytest = "^7.4.0"
pylint = "^2.17.5"
handsdown = "^2.0.1"
coverage = "^7.3.0"

[tool.black]
line-length = 100
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Pillow<10,>=9.0.0
aenum<4,>=3.1.7
Pillow<11,>=10.0.0
aenum<4,>=3.1.15
deprecation<3,>=2.1.0
numpy<2,>=1.22.1

0 comments on commit 8e76760

Please sign in to comment.