Skip to content

Commit

Permalink
encoding=utf-8 in setup.py Fix #20
Browse files Browse the repository at this point in the history
v0.1.4
  • Loading branch information
Gabri95 committed Oct 27, 2020
1 parent 4509cc2 commit de78f7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2cnn/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
__title__ = "e2cnn"
__summary__ = "E(2)-Equivariant CNNs Library for PyTorch"
__url__ = 'https://github.com/QUVA-Lab/e2cnn'
__version__ = "0.1.3"
__version__ = "0.1.4"
__author__ = "Gabriele Cesa, Maurice Weiler"
__email__ = "[email protected]"
__license__ = "BSD 3-Clause Clear"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
setup_requires = []
tests_require = ['scikit-learn', 'scikit-image']

with open("README.md", 'r') as f:
with open("README.md", 'r', encoding='utf-8') as f:
long_description = f.read()

download_url = 'https://github.com/QUVA-Lab/e2cnn/archive/v{}.tar.gz'.format(about['__version__'])
Expand Down

0 comments on commit de78f7d

Please sign in to comment.