Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #312

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ Cloudsplaining is an AWS IAM Security Assessment tool that identifies violations
[![Documentation Status](https://readthedocs.org/projects/cloudsplaining/badge/?version=latest)](https://cloudsplaining.readthedocs.io/en/latest/?badge=latest)
[![Join the chat at https://gitter.im/cloudsplaining](https://badges.gitter.im/cloudsplaining.svg)](https://gitter.im/cloudsplaining?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/kmcquade3.svg?style=social&label=Follow%20the%20author)](https://twitter.com/kmcquade3)
[![Downloads](https://pepy.tech/badge/cloudsplaining)](https://pepy.tech/project/cloudsplaining)
[![PyPI](https://img.shields.io/pypi/v/cloudsplaining)](https://pypi.org/project/cloudsplaining)
[![Python Version](https://img.shields.io/pypi/pyversions/cloudsplaining)](#)
[![Downloads](https://static.pepy.tech/badge/cloudsplaining)](https://pepy.tech/project/cloudsplaining)

* [Example report](https://opensource.salesforce.com/cloudsplaining/)

Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Linter
pylint==2.17.5
# Unit testing
pytest==7.4.0
pytest==7.4.1
coverage==7.2.7
# Security testing
bandit==1.7.5
# Formatter
black==23.3.0
# type check
mypy==1.4.1
boto3-stubs-lite[iam,s3,sts]
boto3-stubs-lite[iam,s3,sts]==1.28.41
types-PyYAML==6.0.12.11
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AWS
boto3==1.28.30
botocore==1.31.30
boto3==1.28.41
botocore==1.31.41
# Speeds up IAM logic
cached-property==1.5.2
# Command line
Expand All @@ -12,6 +12,6 @@ pyyaml==6.0.1
# We render Markdown glossary files as HTML in the Cloudsplaining report
markdown==3.4.4
# AWS IAM Logic
policy-sentry==0.12.8
policy-sentry==0.12.9
# Schema validation
schema==0.7.5
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@ def get_description():
install_requires=REQUIRED_PACKAGES,
project_urls=PROJECT_URLS,
classifiers=[
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3 :: Only',
'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',
'Programming Language :: Python :: 3.12',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
Expand Down