File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,8 @@ classifiers = [
15
15
" Intended Audience :: Developers" ,
16
16
" Intended Audience :: Information Technology" ,
17
17
" Intended Audience :: System Administrators" ,
18
- " License :: OSI Approved :: MIT License" ,
19
18
" Operating System :: MacOS" ,
20
19
" Operating System :: POSIX" ,
21
- " License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)" ,
22
20
" Programming Language :: Python :: 3" ,
23
21
" Programming Language :: Python :: 3.10" ,
24
22
" 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
34
keywords = [" ansible" , " lint" ]
37
- license = { text = " GPLv3+ " }
35
+ license = " GPL-3.0-or-later "
38
36
maintainers = [{
"email" =
" [email protected] " ,
"name" =
" Ansible by Red Hat" }]
39
37
name = " ansible-lint"
40
38
readme = " README.md"
Original file line number Diff line number Diff line change @@ -117,8 +117,9 @@ deps =
117
117
twine>=4.0.1
118
118
commands_pre =
119
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"
120
+ bash -ec " rm -rf src/*.egg-info"
121
+ 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"
122
123
{env_python} -c ' import os.path, shutil, sys; \
123
124
dist_dir = os.path.join("{tox_root}", "dist"); \
124
125
os.path.isdir(dist_dir) or sys.exit(0); \
You can’t perform that action at this time.
0 commit comments