We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e74436 commit 27d0061Copy full SHA for 27d0061
src/setuptools_scm/_integration/setuptools.py
@@ -14,7 +14,7 @@ def read_dist_name_from_setup_cfg(
14
parser = configparser.ConfigParser()
15
16
if isinstance(input, (os.PathLike, str)):
17
- parser.read([input])
+ parser.read([input], encoding='utf-8')
18
else:
19
parser.read_file(input)
20
testing/test_integration.py
@@ -156,7 +156,6 @@ def test_distribution_procides_extras() -> None:
156
157
158
@pytest.mark.issue(760)
159
-@pytest.mark.xfail('platform.system() == "Windows"', reason="#760")
160
def test_unicode_in_setup_cfg(tmp_path: Path) -> None:
161
cfg = tmp_path / "setup.cfg"
162
cfg.write_text(
0 commit comments