Skip to content

Commit 1c62c99

Browse files
authored
Merge-fix: limit python version, reason as pillow-avif-plugin
2 parents 96893e0 + 57a8e33 commit 1c62c99

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/schedule_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: astral-sh/setup-uv@v4
3131
- name: Install ComicGUISpider CLI
3232
run: |
33-
uv tool install comicguispider
33+
uv tool install --prerelease allow comicguispider --force
3434
uv tool update-shell
3535
- name: Install coreutils (for gtimeout)
3636
run: brew install coreutils

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
22
name = "ComicGUISpider"
3-
version = "2.5.1"
3+
version = "2.5.2-beta"
44
description = "GUI Comic Downloader"
55
readme = "README.md"
6-
requires-python = ">=3.12"
6+
requires-python = ">=3.12,<3.14"
77
dependencies = [
88
"httpx[http2]",
99
"jsonpath_rw",

variables/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
from assets import res
44

5-
VER = "v2.5.1"
5+
VER = "v2.5.2-beta"
66

77
LANG = {
88
"en_US": "English",

0 commit comments

Comments
 (0)