-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump urllibl3 version to 2.0.7 and fix Azure unit tests (#502)
* Bump urllibl3 version to 2.0.7 * Fix unit tests * Update unit test * Bump library version to 20240214 * Last poetry lock run * Appease mypy * Appease mypy
- Loading branch information
Showing
8 changed files
with
680 additions
and
655 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "libcloudforensics" | ||
version = "20230601" | ||
version = "20240214" | ||
description = "libcloudforensics is a set of tools to help acquire forensic evidence from Cloud platforms." | ||
authors = ["cloud-forensics-utils development team <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -10,14 +10,15 @@ readme = "README.md" | |
python = "^3.8" | ||
google-api-core = "^2.11.1" | ||
azure-common = "^1.1.28" | ||
azure-core = "^1.28.0" | ||
azure-core = "^1.29.4" | ||
azure-identity = "^1.13.0" | ||
azure-mgmt-compute = "^30.1.0" | ||
azure-mgmt-monitor = "^6.0.1" | ||
azure-mgmt-network = "^24.0.0" | ||
azure-mgmt-resource = "23.0.1" | ||
azure-mgmt-reservations = "^2.3.0" | ||
azure-mgmt-resource = "^23.0.1" | ||
azure-mgmt-storage = "^21.0.0" | ||
azure-storage-blob = "^12.17.0" | ||
azure-storage-blob = "^12.18.1" | ||
boto3 = "^1.28.20" | ||
botocore = ">=1.29.135" | ||
google-api-python-client = "^2.95.0" | ||
|
@@ -31,9 +32,11 @@ sshpubkeys = "^3.3.1" | |
requests = "^2.31.0" | ||
kubernetes = "^27.2.0" | ||
pyopenssl = "^23.2.0" | ||
urllib3 = ">=1.21.1,<1.27" | ||
urllib3 = [ | ||
{version = ">=1.25.4,<1.27", python = "<3.10"}, | ||
{version = ">=1.25.4,<2.1", python = ">=3.10"} | ||
] | ||
google-auth = "^2.22.0" | ||
azure-mgmt-reservations = "^2.3.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
coverage = "^7.2.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters