From 68b848ccd60776f350b507a13c563a5cc33070a8 Mon Sep 17 00:00:00 2001 From: Michele Dolfi <97102151+dolfim-ibm@users.noreply.github.com> Date: Thu, 10 Oct 2024 17:27:26 +0200 Subject: [PATCH] fix: allow more compatible pywin32 versions (#40) Signed-off-by: Michele Dolfi --- poetry.lock | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 7f3301ce..53cf74c5 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1638,4 +1638,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "264ea9ccfbffc8d7f2030a893b8a7e06ccbdf8068f6d327f67296fc9dff261fa" +content-hash = "6a5ac651cb390d591552d57bf7a1d1afc5300548d598c3ec8e15effa891f6672" diff --git a/pyproject.toml b/pyproject.toml index 4cbee625..35fc8f25 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ build = "build.py" [tool.poetry.dependencies] python = "^3.9" tabulate = ">=0.9.0,<1.0.0" -pywin32 = { version = "^306", markers = "sys_platform == 'win32'" } +pywin32 = { version = ">=305", markers = "sys_platform == 'win32'" } [tool.poetry.group.dev.dependencies] pytest = "^7.4.2"