From 082a5fa4f98f8a6f9ecad1b393dbbb0bddd83c3e Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 2 Dec 2023 13:21:35 -0600 Subject: [PATCH] meta: Relax Playwright dependency version Playright needs to be updated frequently in order to update its Firefox build. The Chase website has a very strict browser support policy, and frequently drops support for old Firefox versions. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bb14bc6..0edcdd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ classifiers = [ "Programming Language :: Python :: 3", ] dependencies = [ - "playwright~=1.32.1", + "playwright~=1.32", "requests~=2.29.0", ] dynamic = ["version"]