We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dcdc97 commit 8c9b342Copy full SHA for 8c9b342
pyproject.toml
@@ -15,10 +15,8 @@ classifiers = [
15
"Intended Audience :: Developers",
16
"Intended Audience :: Information Technology",
17
"Intended Audience :: System Administrators",
18
- "License :: OSI Approved :: MIT License",
19
"Operating System :: MacOS",
20
"Operating System :: POSIX",
21
- "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
22
"Programming Language :: Python :: 3",
23
"Programming Language :: Python :: 3.10",
24
"Programming Language :: Python :: 3.11",
@@ -34,7 +32,7 @@ classifiers = [
34
32
description = "Checks playbooks for practices and behavior that could potentially be improved"
35
33
dynamic = ["version", "dependencies", "optional-dependencies"]
36
keywords = ["ansible", "lint"]
37
-license = {text = "GPLv3+"}
+license = "GPL-3.0-or-later"
38
maintainers = [{"email" = "info@ansible.com", "name" = "Ansible by Red Hat"}]
39
name = "ansible-lint"
40
readme = "README.md"
tox.ini
@@ -117,8 +117,9 @@ deps =
117
twine>=4.0.1
118
commands_pre =
119
commands =
120
- bash -ec "PIPX_BIN_DIR={work_dir}/.pipx/bin; PIPX_HOME={work_dir}/.pipx; pipx uninstall ansible-lint || true; pipx install --force -e ."
121
- bash -c "if stderr=$({work_dir}/.pipx/bin/ansible-lint --version >/dev/null) && test -z \"$stderr\"; then echo "ok"; fi"
+ bash -ec "rm -rf src/*.egg-info"
+ bash -ec "PIPX_BIN_DIR={work_dir}/.pipx/bin; PIPX_HOME={work_dir}/.pipx; pipx uninstall ansible-lint >/dev/null || true; pipx install --force -e ."
122
+ bash -ec "if stderr=$({work_dir}/.pipx/bin/ansible-lint --version >/dev/null) && test -z \"$stderr\"; then echo \"ok\"; fi"
123
{env_python} -c 'import os.path, shutil, sys; \
124
dist_dir = os.path.join("{tox_root}", "dist"); \
125
os.path.isdir(dist_dir) or sys.exit(0); \
0 commit comments