From 460790b0b619025e54ca4298b83896a5799e051e Mon Sep 17 00:00:00 2001 From: jdeschamps <6367888+jdeschamps@users.noreply.github.com> Date: Sun, 23 Oct 2022 15:27:20 +0200 Subject: [PATCH] fix bad win import --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4044715..c47bd07 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open(path.join(_dir, 'n2v', 'version.py')) as f: exec(f.read()) -with open(path.join(_dir, 'README.md')) as f: +with open(path.join(_dir, 'README.md'), encoding='UTF-8') as f: long_description = f.read() setup(name='n2v',