Skip to content

Commit

Permalink
Relax boto3 requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladas committed Dec 3, 2024
1 parent 1e86f8c commit 8283e64
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
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

0 comments on commit 8283e64

Please sign in to comment.