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 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()