File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1111defined_macros ["CYTHON_CLINE_IN_TRACEBACK" ] = 0
1212
1313# Getting description:
14- with open ("README.rst" ) as readme_file :
14+ with open ("README.rst" , encoding = "utf-8" ) as readme_file :
1515 description = readme_file .read ()
1616
1717# Getting requirements:
18- with open ("requirements.txt" ) as requirements_file :
18+ with open ("requirements.txt" , encoding = "utf-8" ) as requirements_file :
1919 requirements = requirements_file .readlines ()
2020
2121# Getting version:
22- with open ("src/dependency_injector/__init__.py" ) as init_file :
22+ with open ("src/dependency_injector/__init__.py" , encoding = "utf-8" ) as init_file :
2323 version = re .search ("__version__ = \" (.*?)\" " , init_file .read ()).group (1 )
2424
2525# Adding debug options:
You can’t perform that action at this time.
0 commit comments