From 2b70e7fbbfe20118a7bf3bbc2227d941e0da163a Mon Sep 17 00:00:00 2001 From: Cooper Miller Date: Tue, 27 May 2025 17:51:32 -0700 Subject: [PATCH 1/2] 2.5.3 --- pyproject.toml | 2 +- src/scrapybara/core/client_wrapper.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a54d352..40d1be3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "scrapybara" [tool.poetry] name = "scrapybara" -version = "2.5.2" +version = "2.5.3" description = "" readme = "README.md" authors = [] diff --git a/src/scrapybara/core/client_wrapper.py b/src/scrapybara/core/client_wrapper.py index 7121f16..168b9e9 100644 --- a/src/scrapybara/core/client_wrapper.py +++ b/src/scrapybara/core/client_wrapper.py @@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "scrapybara", - "X-Fern-SDK-Version": "2.5.2", + "X-Fern-SDK-Version": "2.5.3", } headers["x-api-key"] = self.api_key return headers From 1c44bc33b4aa67d74df3b838941fb48f965fec10 Mon Sep 17 00:00:00 2001 From: Cooper Miller Date: Tue, 27 May 2025 17:54:23 -0700 Subject: [PATCH 2/2] skip browser too --- tests/custom/test_client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/custom/test_client.py b/tests/custom/test_client.py index f2c3f78..4e76f56 100644 --- a/tests/custom/test_client.py +++ b/tests/custom/test_client.py @@ -125,6 +125,7 @@ def test_browser() -> None: assert isinstance(response.output.has_links, bool) browser_instance.stop() +@pytest.mark.skip() def test_browser_openai() -> None: _check_api_key() client = Scrapybara() @@ -287,7 +288,7 @@ def test_upload_download() -> None: test_ubuntu() test_browser() # test_ubuntu_openai() - test_browser_openai() + # test_browser_openai() test_upload_download() # test_ubuntu_thinking() # test_browser_thinking()