Skip to content
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
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
The versioning pattern is `major.minor.patch`.

---
## v0.3.17
- set a maximum version for libraries to avoid breaking changes from updates

## v0.3.16
- add a get_task_status() function to CloudClient to get point in time task status

Expand Down
47 changes: 23 additions & 24 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cfa.cloudops"
version = "0.3.16"
version = "0.3.17"
description = "Cloud storage, batch, functions, MLOps assistance"
authors = [
{name = "Ryan Raasch", email = "xng3@cdc.gov"}
Expand All @@ -10,33 +10,32 @@ requires-python = ">=3.10, <4.0"
dependencies = [
"tomli>=2.2.1,<3.0.0",
"tqdm>=4.67.1,<5.0.0",
"pandas>=2.3.2",
"polars>=1.33.1",
"azure-core>=1.35.1",
"pandas>=2.3.2,<3.0.0",
"polars>=1.33.1,<2.0.0",
"azure-core>=1.35.1,<1.40.0",
"azure-mgmt-batch>=18.0.0,<19.0.0",
"azure-mgmt-web>=10.1.0",
"azure-storage-blob>=12.26.0",
"azure-identity>=1.25.0",
"msrest>=0.7.1",
"msrestazure>=0.6.4.post1",
"azure-keyvault>=4.2.0",
"azure-mgmt-compute>=36.0.0",
"azure-batch>=14.2.0",
"azure-mgmt-web>=10.1.0,<10.2.0",
"azure-storage-blob>=12.26.0,<12.29.0",
"azure-identity>=1.25.0,<1.26.0",
"msrest>=0.7.1,<0.8.0",
"msrestazure>=0.6.4.post1,<0.7.0",
"azure-keyvault>=4.2.0,<4.3.0",
"azure-mgmt-compute>=36.0.0,<38.0.0",
"azure-batch>=14.2.0,<14.3.0",
# azure-mgmt-resource<25.0.0: 25.x introduces breaking changes to resource management APIs not yet supported by cfa.cloudops.
"azure-mgmt-resource>=24.0.0,<25.0.0",
"azure-mgmt-appcontainers>=3.2.0",
"azure-mgmt-authorization>=4.0.0",
"python-dotenv>=1.1.1",
"pathlib>=1.0.0",
"docker>=7.1.0",
"pyyaml>=6.0.2",
"azure-mgmt-appcontainers>=4.0.0,<4.1.0",
Comment thread
ryanraaschCDC marked this conversation as resolved.
"azure-mgmt-authorization>=4.0.0,<4.1.0",
"python-dotenv>=1.1.1,<2.0.0",
"docker>=7.1.0,<7.2.0",
"pyyaml>=6.0.2,<6.1.0",
"griddler @ git+https://github.com/CDCgov/pygriddler.git",
"humanize>=4.13.0",
"toml>=0.10.2",
"networkx>=3.4.2",
"anyio>=4.10.0",
"aiohttp>=3.12.15",
"duckdb>=1.4.4"
"humanize>=4.13.0,<5.0.0",
"toml>=0.10.2,<0.11.0",
"networkx>=3.4.2,<3.5.0",
"anyio>=4.10.0,<5.0.0",
"aiohttp>=3.12.15,<3.16.0",
"duckdb>=1.4.4,<2.0.0"
]

[build-system]
Expand Down
Loading