From e4978176f3ceed02260496194b737c626e173936 Mon Sep 17 00:00:00 2001 From: Pasha Dudka Date: Wed, 11 Jun 2025 21:50:32 -0700 Subject: [PATCH 1/2] Relax python dependency as it introduces some weird behavior in upstream dependency resolution --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ba6f346..a6d329f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ license = "MIT" readme = "README.md" [tool.poetry.dependencies] -python = "^3.8" +python = ">=3.8" playwright = "^1" fake-http-header = "^0.3.5" From c95bae8f23a44abd7827bf2ec93aeb531b0c94c8 Mon Sep 17 00:00:00 2001 From: Pasha Dudka Date: Wed, 11 Jun 2025 21:54:49 -0700 Subject: [PATCH 2/2] Relax python dependency as it introduces some weird behavior in upstream dependency resolution --- CHANGELOG.md | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5490df5..f9b0833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All notable changes to this project will be documented in this file. +## 1.1.5 +- Relaxed python requirement boundaries (>=3.8) + ## 1.1.3 - Updated dependencies to fix security vulnerabilities diff --git a/pyproject.toml b/pyproject.toml index a6d329f..2c30971 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "tf-playwright-stealth" packages = [{ include = "playwright_stealth" }] -version = "1.1.3" +version = "1.1.5" description = "Makes playwright stealthy like a ninja!" authors = [] homepage = "https://www.agentql.com/"