Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit 785e0ef

Browse files
authored
Merge pull request #103 from carlosmmatos/bump-v2.4.1
bump version on file
2 parents c497ba8 + 372c6fd commit 785e0ef

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

cs_scanimage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
logging.basicConfig(stream=sys.stdout, format="%(levelname)-8s%(message)s")
5252
log = logging.getLogger("cs_scanimage")
5353

54-
VERSION = "2.3.0"
54+
VERSION = "2.4.1"
5555

5656

5757
class ScanImage(Exception):

setup.py

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="container-image-scan",
12-
version="2.3.0",
12+
version="2.4.1",
1313
author="CrowdStrike",
1414
description="Script to scan a container and return response codes indicating pass/fail",
1515
long_description=long_description,
@@ -19,15 +19,11 @@
1919
package_dir={"": "."},
2020
py_modules=[splitext(basename(path))[0] for path in glob("*.py")],
2121
include_package_data=True,
22-
install_requires=[
23-
'docker',
24-
'crowdstrike-falconpy',
25-
'retry'
26-
],
22+
install_requires=["docker", "crowdstrike-falconpy", "retry"],
2723
extras_require={
28-
'devel': [
29-
'flake8',
30-
'pylint',
24+
"devel": [
25+
"flake8",
26+
"pylint",
3127
],
3228
},
3329
classifiers=[
@@ -44,5 +40,5 @@
4440
"License :: OSI Approved :: The Unlicense (Unlicense)",
4541
"Operating System :: OS Independent",
4642
],
47-
python_requires='>=3.6',
43+
python_requires=">=3.6",
4844
)

0 commit comments

Comments
 (0)