Support TOML v1.0.0 syntax in pyproject.toml

This commit is contained in:
Taneli Hukkinen
2021-07-06 00:26:01 +03:00
parent 8347b59295
commit e942b12b94
6 changed files with 8 additions and 4 deletions

View File

@@ -77,6 +77,7 @@ class TestLoadConfigDictFromFile:
y = 20.0
values = ["tests", "integration"]
name = "foo"
heterogeneous_array = [1, "str"]
"""
),
encoding="utf-8",
@@ -86,6 +87,7 @@ class TestLoadConfigDictFromFile:
"y": "20.0",
"values": ["tests", "integration"],
"name": "foo",
"heterogeneous_array": [1, "str"],
}