From 9e5ef34bfa3ce8e9c49040edf585948778f0a09a Mon Sep 17 00:00:00 2001 From: Joel Wong <127782171+joel-wong-aws@users.noreply.github.com> Date: Thu, 28 Nov 2024 15:01:42 -0600 Subject: [PATCH] chore: allow pywin32 >=307,<309 (#518) Signed-off-by: Joel Wong <127782171+joel-wong-aws@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bf1415ed..968242ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ dependencies = [ "xxhash >= 3.4,< 3.6", # Pinning due to new 4.18 dependencies breaking pyinstaller implementation "jsonschema == 4.17.*", - "pywin32 == 308; sys_platform == 'win32'", + "pywin32 >= 307,< 309; sys_platform == 'win32'", "QtPy == 2.4.*", ]