mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 10:59:14 -04:00
Makefile - adopt this port; - msgpack is no longer a dependency for 3.1.4 (7d7dac6, and ece1f00); - check PYTHON_MAJOR_VERSION before adding dependencies. files/* - patch setup.py in order that readme() works with py36. Approved by: araujo (mentor) Differential Revision: https://reviews.freebsd.org/D18822
19 lines
426 B
Python
19 lines
426 B
Python
--- setup.py.orig 2019-01-11 16:47:10 UTC
|
|
+++ setup.py
|
|
@@ -16,6 +16,7 @@ limitations under the License.
|
|
"""
|
|
import re
|
|
import sys
|
|
+import codecs
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
@@ -27,7 +28,7 @@ def get_version():
|
|
|
|
def readme():
|
|
''' Returns README.rst contents as str '''
|
|
- with open('README.rst') as f:
|
|
+ with codecs.open('README.rst', 'r', encoding='utf8') as f:
|
|
return f.read()
|
|
|
|
|