diff --git a/conf/release.Dockerfile b/conf/release.Dockerfile index 21686738..bec6e8d6 100644 --- a/conf/release.Dockerfile +++ b/conf/release.Dockerfile @@ -28,11 +28,11 @@ COPY ./LICENSE . COPY ./sonar/audit sonar/audit RUN pip install --upgrade pip \ -&& pip install sonar-tools==3.16.2 +&& pip install sonar-tools==3.17 USER ${USERNAME} WORKDIR /home/${USERNAME} -HEALTHCHECK --interval=180s --timeout=5s CMD [ "sonar-tools" ] +HEALTHCHECK --interval=180s --timeout=5s CMD [ "sonar-tools-help" ] -CMD [ "sonar-tools" ] +CMD [ "sonar-tools-help" ] diff --git a/pyproject.toml b/pyproject.toml index fa9079ea..db8c83ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sonar-tools" -version = "3.16.2" +version = "3.17" description = "A collection of utility tools for the SonarQube ecosystem" authors = [ {name = "Olivier Korach", email = "olivier.korach@gmail.com"}, @@ -31,7 +31,7 @@ classifiers = [ "Development Status :: 5 - Production/Stable", # Indicate who your project is intended for "Intended Audience :: Developers", - "Topic :: Code Quality :: Utility Tools", + "Topic :: Software Development :: Quality Assurance", # Specify the Python versions you support here. "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", diff --git a/sonar/util/project_utils.py b/sonar/util/project_utils.py index 34abcda2..342396e0 100644 --- a/sonar/util/project_utils.py +++ b/sonar/util/project_utils.py @@ -18,7 +18,7 @@ # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # -""" Project utility functions """ +"""Project utility functions""" import math from sonar import logging as log