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

Relax boto3 requirement #34

Merged
merged 1 commit into from
Dec 3, 2024
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,7 @@
- adding job usage details into CCSPv2 report
- make CCSPv2 report generated sheets configurable, to be able to use it as a report for AAP historical usage
- allow arbitrary date range selection for the CCSPv2 report
- introducing S3 adapter for CCSP types of reports
- introducing S3 adapter for CCSP types of reports

## 0.4.1
- relax boto3 requirement so it builds with any version available
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def config(since, **kwargs):
'logging_aggregators': settings.LOG_AGGREGATOR_LOGGERS,
'external_logger_enabled': settings.LOG_AGGREGATOR_ENABLED,
'external_logger_type': getattr(settings, 'LOG_AGGREGATOR_TYPE', None),
'metrics_utility_version': "0.4.0", # TODO read from setup.cfg
'metrics_utility_version': "0.4.1", # TODO read from setup.cfg
'billing_provider_params': {} # Is being overwritten in collector.gather by set ENV VARS
}

Expand Down
2 changes: 1 addition & 1 deletion metrics_utility/management_utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def execute(self):
# 'django-admin --help' to work, for backwards compatibility.
elif subcommand == "version" or self.argv[1:] == ["--version"]:
# sys.stdout.write(django.get_version() + "\n")
sys.stdout.write("0.4.0" + "\n")
sys.stdout.write("0.4.1" + "\n")
elif self.argv[1:] in (["--help"], ["-h"]):
sys.stdout.write(self.main_help_text() + "\n")
else:
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = metrics_utility
author = Red Hat
author_email = [email protected]
version = 0.4.0
version = 0.4.1

[options]
packages = find:
Expand All @@ -14,7 +14,7 @@ install_requires =
insights-analytics-collector~=0.3.2
pandas~=2.2.1
openpyxl~=3.1.2
boto3~=1.34.47
boto3


[options.packages.find]
Expand Down
Loading