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
"...git@developer.sourcefind.cn:yangql/composable_kernel.git" did not exist on "7e7640ce83143857a9e68659429c62ed512f9e38"
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
Hide 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'):
...
@@ -40,7 +40,7 @@ for (dirpath, dirnames, filenames) in walk('./nni'):
files
=
[
path
.
normpath
(
path
.
join
(
dirpath
,
filename
))
for
filename
in
filenames
]
files
=
[
path
.
normpath
(
path
.
join
(
dirpath
,
filename
))
for
filename
in
filenames
]
data_files
.
append
((
path
.
normpath
(
dirpath
),
files
))
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
()
long_description
=
fh
.
read
()
setuptools
.
setup
(
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