bump deps

This commit is contained in:
ThePhaseless
2025-08-16 22:41:26 +00:00
parent 27beceaf4d
commit 858bba598f
3 changed files with 7 additions and 16 deletions
+3 -10
View File
@@ -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
View File
@@ -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)
Generated
+3 -5
View File
@@ -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]