From ad03d65f142bda67428ff53834cbe862750c9482 Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Sun, 8 Sep 2024 20:44:38 +0200 Subject: [PATCH] tests: don't install moto on 3.13 windows for now (skips s3 windows tests) --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9bc19c4..f6c190b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,8 @@ dev = [ "requests", "gcsfs", "s3fs", - "moto[s3,server]", + # exclude moto installation on 3.13 windows until pywin32 wheels are available: + "moto[s3,server]; python_version<='3.12' or (python_version>'3.12' and os_name!='nt') ", "webdav4[fsspec]", "paramiko", "wsgidav",