Skip to content
Draft
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
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ jobs:

strategy:
matrix:
django-version: ['4.2', '5.2']
django-version: ['4.2', '5.2', '6.0a1']
python-version: ['3.11', '3.12', '3.13']
working-directory: ['./packages/hidp']
exclude:
- django-version: '4.2'
python-version: '3.13'
- django-version: '6.0a1' # Django 6.0a1 supports Python 3.12 and 3.13
python-version: '3.11'
include:
- working-directory: './project'
python-version: '3.12'
Expand Down
2 changes: 1 addition & 1 deletion packages/hidp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ clean:

../../var/requirements_frozen.txt:
# Pin Django directly to LTS version provided by the test matrix
echo 'Django~=${DJANGO_VERSION}.0' > ../../var/constraints.txt
echo 'Django~=${DJANGO_VERSION}' > ../../var/constraints.txt
uv pip compile pyproject.toml --extra oidc_provider -q -o "${@}" --no-annotate --no-header --constraints ../../var/constraints.txt
@echo "### Package dependencies :package:" >> ${GITHUB_STEP_SUMMARY}
@echo '```' >> ${GITHUB_STEP_SUMMARY}
Expand Down
2 changes: 1 addition & 1 deletion packages/hidp/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django>=4.2,<6
Django>=4.2
django-ratelimit>=4.1.0,<5
jwcrypto>=1.5,<2
requests>=2.32,<3