mirror of
https://github.com/daijro/camoufox.git
synced 2026-09-08 08:00:53 +00:00
Browser: beta.31, cut from the integration merge in 35b45c1 (#756). Tagging
publishes it as a prerelease; beta.30 stays the latest stable release.
pythonlib: 0.5.6b1 -> 0.5.6. The pre-release existed because
PLAYWRIGHT_BROWSER_FLOORS pins Playwright >= 1.61 to browser beta.30, and
beta.30 was itself only a prerelease, so the floor pointed at a build the
resolver would not hand to users. beta.30 is now the latest stable release, so
the floor resolves and 0.5.6 can ship as final.
Verified on linux x86_64 before cutting:
build-tester all categories pass; the one varying slot is a
cross-profile uniqueness collision across 3 random draws
(macOS Screen, then Linux Screen, then macOS Canvas over
three runs), not a regression
patch guards 16/16
Playwright suite 13 failed, 1083 passed vs stock beta.30's 14/1082
pythonlib tests 209 passed
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01W2RfR387Mh1JhZ9LZvkptP
61 lines
1.5 KiB
TOML
61 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "camoufox"
|
|
version = "0.5.6"
|
|
description = "Wrapper around Playwright to help launch Camoufox"
|
|
authors = ["daijro <daijro.dev@gmail.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/daijro/camoufox"
|
|
homepage = "https://camoufox.com/python"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"client",
|
|
"fingerprint",
|
|
"browser",
|
|
"scraping",
|
|
"injector",
|
|
"firefox",
|
|
"playwright",
|
|
]
|
|
classifiers = [
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Internet :: WWW/HTTP :: Browsers",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
rich-click = "*"
|
|
rich = "*"
|
|
requests = "*"
|
|
orjson = "*"
|
|
browserforge = "^1.2.4"
|
|
# Keep a ceiling. 1.61 added Juggler params the protocol schema had to learn
|
|
# (viewport isMobile/screenSize, webp screenshots, webSocketFrame timestamps)
|
|
# and every Playwright minor is free to change Juggler again, while
|
|
# camoufox.server imports playwright._impl._driver -- a private API with no
|
|
# compat guarantee. Bump deliberately, with a run of `make tests`.
|
|
playwright = "<1.63"
|
|
pyyaml = "*"
|
|
platformdirs = "*"
|
|
numpy = "*"
|
|
ua_parser = "*"
|
|
typing_extensions = "*"
|
|
screeninfo = "*"
|
|
lxml = "*"
|
|
language-tags = "*"
|
|
pysocks = "*"
|
|
inquirer = "*"
|
|
geoip2 = {version = "*", optional = true}
|
|
PySide6 = {version = "*", optional = true}
|
|
|
|
[tool.poetry.extras]
|
|
geoip = ["geoip2"]
|
|
gui = ["PySide6"]
|
|
|
|
[tool.poetry.scripts]
|
|
camoufox = "camoufox.__main__:cli"
|