Skip to content

Commit

Permalink
Merge pull request #5 from spark1security/ms/python311
Browse files Browse the repository at this point in the history
Changed default regex config file to use YAML by default
  • Loading branch information
blupants committed Nov 16, 2023
2 parents 2b440cc + cd94af5 commit f6ac286
Show file tree
Hide file tree
Showing 6 changed files with 3,369 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM python:3.9
FROM python:3.11
RUN pip install n0s1 --upgrade
ENTRYPOINT ["n0s1"]
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,15 @@ def get_version():
"Topic :: System :: Monitoring",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
], # Classifiers help users find your project by categorizing it https://pypi.org/classifiers/
keywords="security, cybersecurity, scanner, secret scanner, secret leak, data leak, Jira, Linear, security scanner",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.7, <4",
python_requires=">=3.8, <4",

# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
Expand Down
2 changes: 1 addition & 1 deletion src/n0s1/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.12"
__version__ = "1.0.13"
Loading

0 comments on commit f6ac286

Please sign in to comment.