Skip to content

Commit 59173da

Browse files
authored
CI: Downgrade to Python 3.10 for 'test-older-django' (#2955)
* CI: Downgrade Python used in 'test-older-django' * Added a note to keep renovate.json python 'allowedVersions' in sync.
1 parent 44913e1 commit 59173da

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/renovate.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
{
1313
"matchPackageNames": ["mypy"],
1414
"rangeStrategy": "widen"
15+
},
16+
{
17+
"matchPackageNames": ["python"],
18+
"allowedVersions": "3.10"
1519
}
1620
]
1721
}

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ jobs:
9797
- name: Set up Python
9898
uses: actions/setup-python@v6
9999
with:
100-
python-version: 3.14
100+
# NOTE: Keep renovate.json python "allowedVersions" in sync
101+
python-version: '3.10'
101102

102103
- name: Install dependencies
103104
run: uv sync --no-dev --group tests

0 commit comments

Comments
 (0)