Ren Jin commited on
Commit
0be9bdb
·
1 Parent(s): b46d3b4

Fix compile error in Windows environment (#274)

Browse files
Files changed (1) hide show
  1. setup.py +1 -1
setup.py CHANGED
@@ -47,7 +47,7 @@ with open("yolox/__init__.py", "r") as f:
47
  ).group(1)
48
 
49
 
50
- with open("README.md", "r") as f:
51
  long_description = f.read()
52
 
53
 
 
47
  ).group(1)
48
 
49
 
50
+ with open("README.md", "r", encoding="utf-8") as f:
51
  long_description = f.read()
52
 
53