removed `encoding='utf-8'` at line line 16 due to the issue reported at

#25279#note-7
This commit is contained in:
Francesco Mangiacrapa 2023-06-26 16:07:19 +02:00
parent 272f2c6add
commit 6d9a2c1c4d
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ for group, filepath in _extras_groups:
extras_require[group] = f.readlines()
# Get the long description from the relevant file
with open(os.path.join(HERE, 'README.md'), encoding='utf-8') as f:
with open(os.path.join(HERE, 'README.md')) as f:
long_description = f.read()
setup(