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 6e2b951 commit 03992feCopy full SHA for 03992fe
tests/packages/unsupported-dynamic/pyproject.toml
@@ -10,5 +10,5 @@ requires = ['meson-python']
10
name = 'unsupported-dynamic'
11
version = '1.0.0'
12
dynamic = [
13
- 'dependencies',
+ 'requires-python',
14
]
tests/test_project.py
@@ -36,7 +36,7 @@ def test_version(package):
36
37
38
def test_unsupported_dynamic(package_unsupported_dynamic):
39
- with pytest.raises(mesonpy.ConfigError, match='unsupported dynamic metadata fields: "dependencies"'):
+ with pytest.raises(mesonpy.ConfigError, match='unsupported dynamic metadata fields: "requires-python"'):
40
with mesonpy.Project.with_temp_working_dir():
41
pass
42
0 commit comments