mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2026-09-24 14:20:08 +01:00
bump deps
This commit is contained in:
+3
-10
@@ -8,11 +8,10 @@ version = "0.1.0"
|
||||
description = "API for getting cookies for Cloudflare challenges"
|
||||
readme = "README.md"
|
||||
dependencies = [
|
||||
"fastapi[standard]==0.116.1",
|
||||
"pyautogui==0.9.54",
|
||||
"pydantic==2.11.7",
|
||||
"fastapi[standard]==0.116.*",
|
||||
"pyautogui==0.9.*",
|
||||
"pydantic==2.11.*",
|
||||
"seleniumbase==4.41.0",
|
||||
"uvicorn==0.35.0",
|
||||
]
|
||||
urls = { repository = "https://github.com/ThePhaseless/Byparr" }
|
||||
|
||||
@@ -56,9 +55,3 @@ ignore = [
|
||||
]
|
||||
select = ["ALL"]
|
||||
extend-safe-fixes = ["D415"]
|
||||
|
||||
[tool.pytest]
|
||||
log_cli = "True"
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
asyncio_default_fixture_loop_scope = "function"
|
||||
|
||||
+1
-1
@@ -64,7 +64,7 @@ def read_item(request: LinkRequest, sb: SeleniumDep) -> LinkResponse:
|
||||
|
||||
if sb.get_title() not in CHALLENGE_TITLES:
|
||||
break
|
||||
except Exception as e: # noqa
|
||||
except Exception as e: # noqa: BLE001
|
||||
logger.warning(f"Captcha click attempt {attempt + 1} failed: {e}")
|
||||
|
||||
time.sleep(5)
|
||||
|
||||
@@ -70,7 +70,6 @@ dependencies = [
|
||||
{ name = "pyautogui" },
|
||||
{ name = "pydantic" },
|
||||
{ name = "seleniumbase" },
|
||||
{ name = "uvicorn" },
|
||||
]
|
||||
|
||||
[package.dev-dependencies]
|
||||
@@ -87,11 +86,10 @@ test = [
|
||||
|
||||
[package.metadata]
|
||||
requires-dist = [
|
||||
{ name = "fastapi", extras = ["standard"], specifier = "==0.116.1" },
|
||||
{ name = "pyautogui", specifier = "==0.9.54" },
|
||||
{ name = "pydantic", specifier = "==2.11.7" },
|
||||
{ name = "fastapi", extras = ["standard"], specifier = "==0.116.*" },
|
||||
{ name = "pyautogui", specifier = "==0.9.*" },
|
||||
{ name = "pydantic", specifier = "==2.11.*" },
|
||||
{ name = "seleniumbase", specifier = "==4.41.0" },
|
||||
{ name = "uvicorn", specifier = "==0.35.0" },
|
||||
]
|
||||
|
||||
[package.metadata.requires-dev]
|
||||
|
||||
Reference in New Issue
Block a user