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@v5
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
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ classifiers = [
]
requires-python = ">=3.9"
dependencies = [
"PyYAML==6.0.1",
"PyYAML==6.0.3",
"deepmerge==2.0",
"pathlib2==2.3.7.post1",
]

[project.optional-dependencies]
s3 = ["boto3==1.34.6"]
aws = ["boto3==1.34.6"] # Alias for s3 for backward compatibility
s3 = ["boto3==1.40.50"]
aws = ["boto3==1.40.50"] # Alias for s3 for backward compatibility
vault = ["hvac==1.2.1"]
all = ["boto3==1.34.6", "hvac==1.2.1"]
all = ["boto3==1.40.50", "hvac==1.2.1"]
dev = [
"pytest==8.4.2",
"pytest-cov==7.0.0",
Expand All @@ -48,7 +48,7 @@ dev = [
"flake8==7.3.0",
"mypy==1.18.2",
"types-PyYAML==6.0.12.20250915",
"boto3==1.34.6",
"boto3==1.40.50",
"hvac==1.2.1",
"bump-my-version==1.2.4",
"build==1.3.0",
Expand Down