Skip to content

Commit

Permalink
Merge pull request #383 from Arnoldosmium/patch-1
Browse files Browse the repository at this point in the history
Explicitly use utf8 to pass conda-forge Windows build
  • Loading branch information
CamDavidsonPilon committed Jul 6, 2020
2 parents 112d602 + 50d2a8e commit 1ddfb62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
@@ -1,5 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
from setuptools import setup

Expand All @@ -10,7 +11,7 @@
readme_path = os.path.join(os.path.dirname(__file__), "README.md")


long_description = open(readme_path).read()
long_description = io.open(readme_path, encoding="utf8").read()


setup(
Expand Down

0 comments on commit 1ddfb62

Please sign in to comment.