@@ -33,8 +33,8 @@ classifiers = [
33
33
]
34
34
dependencies = [
35
35
" ansible-compat>=25.8.0" , # indirect dependency of cryptography
36
- " ansible-core>=2.16.11" , # indirect dependency of ansible-core
37
- " ansible-core>=2.20.0b1 ; python_full_version >= '3.14'" , # indirect dependency of ansible-core
36
+ " ansible-core>=2.16.11; python_version < '3.14' " , # indirect dependency of ansible-core
37
+ " ansible-core>=2.20.0b1 ; python_version >= '3.14'" , # indirect dependency of ansible-core
38
38
" black>=24.3.0" , # indirect dependency of ansible-core
39
39
" cffi>=1.17.1" , # indirect dependency of ruamel-yaml
40
40
" cryptography>=38" ,
@@ -44,14 +44,14 @@ dependencies = [
44
44
" jsonschema>=4.10.0" ,
45
45
" packaging>=22.0" ,
46
46
" pathspec>=0.10.3" ,
47
- " pyyaml>=6.0.2" ,
48
- " pyyaml>=6.0.3 ; python_full_version < '3.14'" , # py314 support
47
+ " pyyaml>=6.0.2 ; python_version < '3.14' " ,
48
+ " pyyaml>=6.0.3 ; python_version < '3.14'" , # py314 support
49
49
" referencing>=0.36.2" ,
50
50
" ruamel-yaml>=0.18.11" ,
51
- " ruamel-yaml-clib>=0.2.12 ; python_full_version < '3.14'" ,
51
+ " ruamel-yaml-clib>=0.2.12 ; python_version < '3.14'" ,
52
52
" subprocess-tee>=0.4.1" ,
53
- " wcmatch>=8.1.2 ; python_full_version < '3.12'" ,
54
- " wcmatch>=8.5.0 ; python_full_version >= '3.12'" ,
53
+ " wcmatch>=8.1.2 ; python_version < '3.12'" ,
54
+ " wcmatch>=8.5.0 ; python_version >= '3.12'" ,
55
55
" yamllint>=1.34.0" ,
56
56
]
57
57
dynamic = [" version" ]
@@ -106,7 +106,13 @@ lint = [
106
106
" pytest>=7.2.2" ,
107
107
" setuptools>=51.1.1" ,
108
108
]
109
- pkg = [" build>=0.9" , " pip>=25.2" , " pipx>=1.7.1" , " twine>=4.0.1" ]
109
+ pkg = [
110
+ " build>=0.9" ,
111
+ " pip>=25.2" ,
112
+ " pipx>=1.7.1" ,
113
+ " setuptools-scm>=9.2.0" ,
114
+ " twine>=4.0.1" ,
115
+ ]
110
116
schemas = [" check-jsonschema>=0.26.3" ]
111
117
112
118
[build-system ]
@@ -720,6 +726,7 @@ commands = [
720
726
" {tox_root}" ,
721
727
],
722
728
[" sh" , " -c" , " python -m twine check --strict {tox_root}/dist/*" ],
729
+ [" sh" , " ./tools/test-pkg.sh" ],
723
730
]
724
731
commands_pre = []
725
732
dependency_groups = [" pkg" ]
0 commit comments