Skip to content
Merged
Changes from 2 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
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,22 @@ dependencies = [
]

[project.optional-dependencies]
s3 = ["boto3==1.40.50"]
aws = ["boto3==1.40.50"] # Alias for s3 for backward compatibility
vault = ["hvac==2.3.0"]
all = ["boto3==1.40.50", "hvac==2.3.0"]
s3 = ["boto3==1.40.65"]
aws = ["boto3==1.40.65"] # Alias for s3 for backward compatibility
vault = ["hvac==2.4.0"]
all = ["boto3==1.40.65", "hvac==2.4.0"]
dev = [
"pytest==8.4.2",
"pytest-cov==7.0.0",
"pytest-mock==3.15.1",
"pytest-xdist==3.8.0",
"coverage[toml]==7.10.7",
"coverage[toml]==7.11.0",
"black==25.9.0",
"flake8==7.3.0",
"mypy==1.18.2",
"types-PyYAML==6.0.12.20250915",
"boto3==1.40.50",
"hvac==2.3.0",
"boto3==1.40.65",
"hvac==2.4.0",
"bump-my-version==1.2.4",
"build==1.3.0",
"twine==6.2.0",
Expand Down
Loading