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
2 changes: 1 addition & 1 deletion .github/workflows/_check_code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v6
- name: Check spelling with typos
uses: crate-ci/typos@v1.40.0
uses: crate-ci/typos@v1

lint_check:
name: Lint check
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ dependencies = []

[dependency-groups]
dev = [
"dycw-pytest-only~=2.1.0",
"dycw-pytest-only<3.0.0",
"poethepoet<1.0.0",
"pre-commit~=4.3.0",
"pytest-asyncio~=1.1.0",
"pytest-cov~=6.2.0",
"pytest-timeout~=2.4.0",
"pytest-xdist~=3.8.0",
"pytest~=8.4.0",
"ruff~=0.12.0",
"pre-commit<5.0.0",
"pytest-asyncio<2.0.0",
"pytest-cov<8.0.0",
"pytest-timeout<3.0.0",
"pytest-xdist<4.0.0",
"pytest<9.0.0",
"ruff~=0.14.0",
"setuptools", # setuptools are used by pytest, but not explicitly required
"ty~=0.0.0",
]
Expand Down
25 changes: 25 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"extends": ["config:base", ":semanticCommitTypeAll(chore)"],
"ignorePaths": ["docs/**"],
"pinVersions": false,
"separateMajorMinor": false,
"dependencyDashboard": false,
"semanticCommits": "enabled",
"lockFileMaintenance": {
"enabled": true,
"automerge": true,
"automergeType": "branch"
},
"packageRules": [
{
"matchPaths": ["pyproject.toml"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["major", "minor"],
"groupName": "major/minor dev dependencies",
"groupSlug": "dev-dependencies",
"automerge": true,
"automergeType": "branch"
}
],
"schedule": ["before 7am every weekday"]
}
2 changes: 1 addition & 1 deletion tests/unit/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ def test_create_storage_content_signature_with_expiration() -> None:
expires_in_millis=10000,
)

version, expires_at, hmac = base64.urlsafe_b64decode(signature).decode('utf-8').split('.')
version, expires_at, _ = base64.urlsafe_b64decode(signature).decode('utf-8').split('.')
assert version == '0'
assert expires_at != '0'
Loading