-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build: do not handle aioqzone extras * feat: heartbeat is simplified * ci: fix extras not installed to poetry venv * test: fix unexpected param --------- Co-authored-by: JamzumSum <[email protected]>
- Loading branch information
1 parent
f66ed5c
commit cb76f1c
Showing
8 changed files
with
93 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "aioqzone-feed" | ||
version = "0.13.3.dev1" | ||
version = "0.13.4.dev1" | ||
description = "aioqzone plugin providing higher level api for processing feed." | ||
authors = ["aioqzone <[email protected]>"] | ||
license = "AGPL-3.0" | ||
|
@@ -16,17 +16,11 @@ documentation = "https://aioqzone.github.io/aioqzone-feed" | |
python = "^3.8" | ||
aioqzone = { version = "^0.12.11.dev2", source = "PyPI", allow-prereleases = true } | ||
exceptiongroup = { version = ">=1.1.1", python = "<3.11" } | ||
|
||
lxml = { version = "*", optional = false } | ||
cssselect = { version = "*", optional = false } | ||
|
||
numpy = { version = "*", optional = false } | ||
pillow = { version = "*", optional = false } | ||
|
||
# prepare for aioqzone v13 | ||
[tool.poetry.extras] | ||
captcha = ["numpy", "pillow"] # equals to aioqzone[captcha] | ||
web = ["lxml", "cssselect"] # equals to aioqzone[lxml] | ||
web = ["lxml"] | ||
|
||
# dependency groups | ||
[tool.poetry.group.test] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters