Skip to content

Commit

Permalink
fix windows installation
Browse files Browse the repository at this point in the history
  • Loading branch information
tcitry committed Dec 22, 2020
1 parent b45eba0 commit 58088ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import os
from setuptools import find_packages, setup

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

os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-mirage-field',
version='1.1.6',
version='1.1.7',
install_requires=[
"cryptography",
"tqdm",
Expand Down

0 comments on commit 58088ed

Please sign in to comment.