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 b21b02c commit 5cd2f1aCopy full SHA for 5cd2f1a
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
@@ -45,7 +45,7 @@ def test_version(package):
45
46
47
def test_unsupported_dynamic(package_unsupported_dynamic):
48
- with pytest.raises(mesonpy.ConfigError, match='unsupported dynamic metadata fields: "dependencies"'):
+ with pytest.raises(mesonpy.ConfigError, match='unsupported dynamic metadata fields: "requires-python"'):
49
with mesonpy.Project.with_temp_working_dir():
50
pass
51
0 commit comments