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 7a54e43 commit b186507
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 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.0.1 - 2022/04/10

- Use dict.get() to obtain optional keys per https://github.com/FHPythonUtils/PyLSR/pull/4
Expand Down
4 changes: 1 addition & 3 deletions documentation/reference/pylsr/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,4 @@ def write(filename: str, lsrImage: LSRImage):

#### See also

- [LSRImage](#lsrimage)


- [LSRImage](#lsrimage)
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 = "pylsr"
version = "2022.0.1"
version = "2023"
license = "mit"
description = "Use this module to read, and write to Apple's Layer Source Representation (LSR) Image format."
authors = ["FredHappyface"]
Expand All @@ -22,16 +22,17 @@ documentation = "https://github.com/FHPythonUtils/PyLSR/blob/master/README.md"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.7"
Pillow = "<10,>=9.0.0"
python = "^3.8"
Pillow = "<11,>=10.0.0"
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Pillow<10,>=9.0.0
Pillow<11,>=10.0.0
deprecation<3,>=2.1.0
Binary file modified tests/data/pull4copy.lsr
Binary file not shown.
Binary file modified tests/data/test1copy.lsr
Binary file not shown.
Binary file modified tests/data/test3copy.lsr
Binary file not shown.

0 comments on commit b186507

Please sign in to comment.