Change min python version for cbz-format

This commit is contained in:
Sekun 2024-08-11 21:57:28 +02:00
parent 7b3d9183a1
commit 311eebaf0f
2 changed files with 6 additions and 5 deletions

View file

@ -5,10 +5,6 @@
- [cbz-format.py](./prog/cbz-format.py): Program to convert images from a `cbz` file to - [cbz-format.py](./prog/cbz-format.py): Program to convert images from a `cbz` file to
jpeg format with specific size. jpeg format with specific size.
```py
pipx run https://git.sekun.eu/sekun/utils/raw/branch/main/prog/cbz-format.py
```
## Utilities ## Utilities

View file

@ -3,10 +3,15 @@
"""Program to convert images from cbz. """Program to convert images from cbz.
It converts png and webp to jpeg. It converts png and webp to jpeg.
Test this program simply with pipx:
`pipx run https://git.sekun.eu/sekun/utils/raw/branch/main/prog/cbz-format.py`
""" """
# /// script # /// script
# requires-python = ">=3.11" # requires-python = ">=3.8"
# dependencies = [ # dependencies = [
# "pillow>=10.4,<10.5", # "pillow>=10.4,<10.5",
# "structlog>=24.4,<24.5", # "structlog>=24.4,<24.5",