Skip to content

Commit

Permalink
semgrep 0.50.1 + lgpl3+
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinabraham committed May 9, 2021
1 parent 6e4698b commit 98ae31a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Made with ![Love](https://cloud.githubusercontent.com/assets/4301109/16754758/82

[![PyPI version](https://badge.fury.io/py/libsast.svg)](https://badge.fury.io/py/libsast)
[![platform](https://img.shields.io/badge/platform-windows%2Fosx%2Flinux-green.svg)](https://github.com/ajinabraham/libsast)
[![License](https://img.shields.io/:license-lgpl2.1-blue.svg)](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html)
[![License](https://img.shields.io/:license-lgpl3+-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0.en.html)
[![python](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/)

[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/ajinabraham/libsast.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/ajinabraham/libsast/context:python)
Expand Down
2 changes: 1 addition & 1 deletion libsast/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
__title__ = 'libsast'
__authors__ = 'Ajin Abraham'
__copyright__ = 'Copyright 2020 Ajin Abraham, OpenSecurity'
__version__ = '1.4.1'
__version__ = '1.4.2'
__version_info__ = tuple(int(i) for i in __version__.split('.'))
__all__ = [
'Scanner',
Expand Down
1 change: 0 additions & 1 deletion libsast/core_sgrep/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def invoke_semgrep(paths, scan_rules, **kwargs):
strict=False,
timeout_threshold=3,
json_stats=False,
json_time=False,
output_per_finding_max_lines_limit=None,
),
stdout=io_capture,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def get_requires():
requires = [
'requests>=2.22.0',
'pyyaml>=5.3',
'semgrep==0.47.0;platform_system!="Windows"',
'semgrep==0.50.1;platform_system!="Windows"',
]
return requires

Expand Down Expand Up @@ -37,7 +37,7 @@ def get_version(rel_path):
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
('License :: OSI Approved :: '
'GNU Lesser General Public License v2 (LGPLv2)'),
'GNU Lesser General Public License v3 or later (LGPLv3+)'),
'Programming Language :: Python :: 3.6',
],
packages=find_packages(include=[
Expand Down

0 comments on commit 98ae31a

Please sign in to comment.