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