Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
nni
Commits
c481e86d
"driver/src/conv_driver.cpp" did not exist on "69fea593ec9355b3b4a19845897db4a36327b55d"
Commit
c481e86d
authored
Aug 30, 2019
by
Guoxin
Committed by
liuzhe-lz
Aug 30, 2019
Browse files
BUG FIX: define read file encoding as utf-8 (#1508)
parent
aa4bb1f6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
deployment/pypi/setup.py
deployment/pypi/setup.py
+1
-1
No files found.
deployment/pypi/setup.py
View file @
c481e86d
...
...
@@ -40,7 +40,7 @@ for (dirpath, dirnames, filenames) in walk('./nni'):
files
=
[
path
.
normpath
(
path
.
join
(
dirpath
,
filename
))
for
filename
in
filenames
]
data_files
.
append
((
path
.
normpath
(
dirpath
),
files
))
with
open
(
'../../README.md'
,
'r'
)
as
fh
:
with
open
(
'../../README.md'
,
'r'
,
encoding
=
"utf-8"
)
as
fh
:
long_description
=
fh
.
read
()
setuptools
.
setup
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment