From 9a9e61f6602db431b25e5c274d8e09e12dba96a0 Mon Sep 17 00:00:00 2001 From: daijro Date: Wed, 11 Dec 2024 05:48:25 -0600 Subject: [PATCH] pythonlib: Force Browserforge 1.2.1+ Apify's models have been contaminated in recent releases. Browserforge 1.2.1 reverts to a earlier model. https://github.com/daijro/browserforge/issues/17 --- pythonlib/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonlib/pyproject.toml b/pythonlib/pyproject.toml index 2e3d2e0..902746f 100644 --- a/pythonlib/pyproject.toml +++ b/pythonlib/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "camoufox" -version = "0.4.8-beta" +version = "0.4.8" description = "Wrapper around Playwright to help launch Camoufox" authors = ["daijro "] license = "MIT" @@ -31,7 +31,7 @@ python = "^3.8" click = "*" requests = "*" orjson = "*" -browserforge = "*" +browserforge = "^1.2.1" playwright = "*" pyyaml = "*" platformdirs = "*"