Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13' # Use 3.13 until bandit supports 3.14
python-version: '3.14' # Use 3.13 until bandit supports 3.14

- name: Install security tools
run: |
Expand Down
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