From 9264f02d6c39245136074f28f100e32304f89d2c Mon Sep 17 00:00:00 2001 From: Matthew Douglas <38992547+matthewdouglas@users.noreply.github.com> Date: Thu, 14 Nov 2024 13:36:14 -0500 Subject: [PATCH] Fix Windows build. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3a1bcb574..434a2eaf4 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def read(fname): - return open(os.path.join(os.path.dirname(__file__), fname)).read() + return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf8").read() # Tested with wheel v0.29.0