diff --git a/CHANGELOG.md b/CHANGELOG.md index b679576..e57ce01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/documentation/reference/pylsr/index.md b/documentation/reference/pylsr/index.md index 2e8d96c..8f32e6e 100644 --- a/documentation/reference/pylsr/index.md +++ b/documentation/reference/pylsr/index.md @@ -295,6 +295,4 @@ def write(filename: str, lsrImage: LSRImage): #### See also -- [LSRImage](#lsrimage) - - +- [LSRImage](#lsrimage) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 1741520..bb722ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] @@ -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 diff --git a/requirements.txt b/requirements.txt index c7a6ab4..1d7ad48 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -Pillow<10,>=9.0.0 +Pillow<11,>=10.0.0 deprecation<3,>=2.1.0 diff --git a/tests/data/pull4copy.lsr b/tests/data/pull4copy.lsr index ba98e40..289615b 100644 Binary files a/tests/data/pull4copy.lsr and b/tests/data/pull4copy.lsr differ diff --git a/tests/data/test1copy.lsr b/tests/data/test1copy.lsr index a0d83ef..9b13ef2 100644 Binary files a/tests/data/test1copy.lsr and b/tests/data/test1copy.lsr differ diff --git a/tests/data/test3copy.lsr b/tests/data/test3copy.lsr index a40517e..a329ccd 100644 Binary files a/tests/data/test3copy.lsr and b/tests/data/test3copy.lsr differ