awslogs: migrate to `python@3.11`

Closes #115095.

Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Branch Vincent 2022-11-07 15:53:49 -05:00 committed by BrewTestBot
parent a4969e716d
commit a17e91221d
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
2 changed files with 15 additions and 16 deletions

View File

@ -19,7 +19,8 @@ class Awslogs < Formula
sha256 cellar: :any_skip_relocation, x86_64_linux: "1a14896857ef941ec8b99d1eae133515be05a45c95eed41ffb809583f0d146cc" sha256 cellar: :any_skip_relocation, x86_64_linux: "1a14896857ef941ec8b99d1eae133515be05a45c95eed41ffb809583f0d146cc"
end end
depends_on "python@3.10" depends_on "python@3.11"
depends_on "six"
uses_from_macos "zlib" uses_from_macos "zlib"
@ -28,13 +29,13 @@ class Awslogs < Formula
end end
resource "boto3" do resource "boto3" do
url "https://files.pythonhosted.org/packages/5e/ac/e930417b8b389423899cd350643a7814edff04d548accf8bfd686482dbb3/boto3-1.22.5.tar.gz" url "https://files.pythonhosted.org/packages/df/e4/893fc4af6ee0c801725b48ba4d3120705126edab71e0fe84f8eb4850c427/boto3-1.26.4.tar.gz"
sha256 "dbbeee6d535a311d4d646a9dd683b216bf17d59345367432a22a21b50eb43a8e" sha256 "244fd0776fc1f69c3ed34f359db7a90a6108372486abc999ce8515a79bbfc86e"
end end
resource "botocore" do resource "botocore" do
url "https://files.pythonhosted.org/packages/ad/18/0cb0c4f06adc779a13f7e7cbbee3b3ab284c5cada53a3257b4330f6ae880/botocore-1.25.5.tar.gz" url "https://files.pythonhosted.org/packages/32/c1/3a3cbbdc58a71c1dfafbeeb79dd09b68a030ff5c52df7ad8e87d5ed57c10/botocore-1.29.4.tar.gz"
sha256 "9f2f143fe8581eb9c43c0934b7daf706067afa409171a80b103f458977fcfbd4" sha256 "fa86747f5092723c0dc7f201a48cdfac3ad8d03dd6cb7abc189abc708be43269"
end end
resource "jmespath" do resource "jmespath" do
@ -48,23 +49,18 @@ class Awslogs < Formula
end end
resource "s3transfer" do resource "s3transfer" do
url "https://files.pythonhosted.org/packages/7e/19/f82e4af435a19b28bdbfba63f338ea20a264f4df4beaf8f2ab9bfa34072b/s3transfer-0.5.2.tar.gz" url "https://files.pythonhosted.org/packages/e1/eb/e57c93d5cd5edf8c1d124c831ef916601540db70acd96fa21fe60cef1365/s3transfer-0.6.0.tar.gz"
sha256 "95c58c194ce657a5f4fb0b9e60a84968c808888aed628cd98ab8771fe1db98ed" sha256 "2ed07d3866f523cc561bf4a00fc5535827981b117dd7876f036b0c1aca42c947"
end
resource "six" do
url "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz"
sha256 "1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"
end end
resource "termcolor" do resource "termcolor" do
url "https://files.pythonhosted.org/packages/8a/48/a76be51647d0eb9f10e2a4511bf3ffb8cc1e6b14e9e4fab46173aa79f981/termcolor-1.1.0.tar.gz" url "https://files.pythonhosted.org/packages/62/1a/e78a930f70dd576f2a7250a98263ac973a80d6f1a395d89328844881a0c0/termcolor-2.1.0.tar.gz"
sha256 "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b" sha256 "b80df54667ce4f48c03fe35df194f052dc27a541ebbf2544e4d6b47b5d6949c4"
end end
resource "urllib3" do resource "urllib3" do
url "https://files.pythonhosted.org/packages/1b/a5/4eab74853625505725cefdf168f48661b2cd04e7843ab836f3f63abf81da/urllib3-1.26.9.tar.gz" url "https://files.pythonhosted.org/packages/b2/56/d87d6d3c4121c0bcec116919350ca05dc3afd2eeb7dc88d07e8083f8ea94/urllib3-1.26.12.tar.gz"
sha256 "aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e" sha256 "3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e"
end end
def install def install

View File

@ -44,6 +44,9 @@
"awscli@1": { "awscli@1": {
"exclude_packages": ["six", "PyYAML"] "exclude_packages": ["six", "PyYAML"]
}, },
"awslogs": {
"exclude_packages": ["six"]
},
"awsume": { "awsume": {
"exclude_packages": ["six", "PyYAML"] "exclude_packages": ["six", "PyYAML"]
}, },