Skip to content

Commit

Permalink
Fix installation on non-UTF-8 platforms
Browse files Browse the repository at this point in the history
Installation was broken on Windows,
because of non_ASCII characters in the README.
  • Loading branch information
rafguns committed Mar 15, 2023
1 parent dbd0318 commit 03379a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

long_description = open("README.rst").read()
long_description = open("README.rst", encoding="utf-8").read()

setup(
name="linkpred",
Expand Down

0 comments on commit 03379a5

Please sign in to comment.