From 83a95fdb50b634dd3e86f1f51206452d53c12959 Mon Sep 17 00:00:00 2001 From: Ajin Abraham Date: Thu, 14 Nov 2024 00:57:12 -0800 Subject: [PATCH] Explicit semgrep install (#126) --- njsscan/__init__.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/njsscan/__init__.py b/njsscan/__init__.py index 3a5c84f..210170e 100644 --- a/njsscan/__init__.py +++ b/njsscan/__init__.py @@ -6,7 +6,7 @@ __title__ = 'njsscan' __authors__ = 'Ajin Abraham' __copyright__ = f'Copyright {datetime.now().year} Ajin Abraham, OpenSecurity' -__version__ = '0.4.2' +__version__ = '0.4.3' __version_info__ = tuple(int(i) for i in __version__.split('.')) __all__ = [ '__title__', diff --git a/setup.py b/setup.py index 27c8e0b..976df37 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,8 @@ def get_version(rel_path): long_description_content_type='text/markdown', install_requires=[ 'colorama>=0.4.5', - 'libsast>=3.1.0', + 'libsast>=3.1.4', + 'semgrep==1.86.0', 'sarif-om>=1.0.4', 'jschema-to-python>=1.2.3', 'tabulate>=0.8.10',