Skip to content

Commit 52e78ed

Browse files
Version bump, python version updated and readme issues
1 parent 400f636 commit 52e78ed

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,8 @@ This features is experimental, but now you can run commands to check and analyze
313313
* EBS Encryption enabled
314314
* EC2 IMDSV2 Check
315315
* DynamoDB PITR Enabled
316+
* Incoming SSH Disabled
317+
* Cloudtrail enabled
316318
317319
## Using a Docker container
318320
To build docker container using Dockerfile

cloudiscovery/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343

4444
# pylint: enable=wrong-import-position
4545
# Check version
46-
if sys.version_info < (3, 6):
47-
print("Python 3.6 or newer is required", file=sys.stderr)
46+
if sys.version_info < (3, 8):
47+
print("Python 3.8 or newer is required", file=sys.stderr)
4848
sys.exit(1)
4949

50-
__version__ = "2.2.4"
50+
__version__ = "2.2.5"
5151

5252
AVAILABLE_LANGUAGES = ["en_US", "pt_BR"]
5353
DEFAULT_REGION = "us-east-1"

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ def run(self):
7979
"Natural Language :: English",
8080
"License :: OSI Approved :: Apache Software License",
8181
"Programming Language :: Python",
82-
"Programming Language :: Python :: 3.6",
83-
"Programming Language :: Python :: 3.7",
8482
"Programming Language :: Python :: 3.8",
8583
],
8684
cmdclass={"verify": VerifyVersionCommand},

0 commit comments

Comments
 (0)