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
16 changes: 13 additions & 3 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"automerge": true
},
{
"description": "GitHub Actions: allow Python 3.13 patch upgrades only (block 3.14+)",
"description": "GitHub Actions (setup-python uses-with): allow Python 3.13 patch upgrades only",
"matchManagers": [
"github-actions"
],
Expand All @@ -53,15 +53,25 @@
"allowedVersions": "/^3\\.13\\./"
},
{
"description": "Pin Python Docker and Pyenv to 3.13.x",
"description": "pyproject.toml requires-python: do not move off Python 3.13.x",
"matchDatasources": [
"python-version"
],
"matchDepNames": [
"python"
],
"allowedVersions": "/^3\\.13\\./"
},
{
"description": "Pin .python-version (pyenv manager) to Python 3.13.x",
"matchManagers": [
"dockerfile",
"pyenv"
],
"matchPackageNames": [
"python"
],
"allowedVersions": "3.13.x"
"allowedVersions": "/^3\\.13\\./"
},
{
"matchPackageNames": [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "star-ground"
version = "2.2.1"
description = "Logistics engine for analog electronics"
readme = "README.md"
requires-python = "~=3.13.0"
requires-python = ">=3.13,<3.14"
dependencies = [
"fpdf2==2.8.5",
"google-auth==2.47.0",
Expand Down