From 9dae39e8029e8937836923c2f70f7dbc4b1df978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20L=C3=B3pez=20Pe=C3=B1a?= Date: Wed, 29 Nov 2023 15:36:59 +0000 Subject: [PATCH] Dont break things on Windows --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1ab24e975..bf5c96758 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def find_vendored_packages(path): """Add all the packages in the `vendor` directory""" return [ - root.replace("/", ".") + root.replace(os.path.sep, ".") for root, dirs, files in os.walk(path) if "__pycache__" not in root ]