Skip to content

Commit 58088ed

Browse files
committed
fix windows installation
1 parent b45eba0 commit 58088ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import os
22
from setuptools import find_packages, setup
33

4-
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
4+
with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf8') as readme:
55
README = readme.read()
66

77
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
88
setup(
99
name='django-mirage-field',
10-
version='1.1.6',
10+
version='1.1.7',
1111
install_requires=[
1212
"cryptography",
1313
"tqdm",

0 commit comments

Comments
 (0)