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
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12']
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could add 3.13 at this point.

django: ['4.2', '5.2']

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased] - XXXX-XX-XX
## [1.0.4] - 2025-12-10
- [PR 9](https://github.com/salesforce/django-request-queue-timeout/pull/9) Update GitHub action versions
- [PR 10](https://github.com/salesforce/django-request-queue-timeout/pull/10) Fix Makefile install target
- [PR 13](https://github.com/salesforce/django-request-queue-timeout/pull/13) Add Django 5.x support

## [1.0.3] - 2024-02-06
- [PR 6](https://github.com/salesforce/django-request-queue-timeout/pull/6) chore: upgrade django 4.2 LTS (@W-14178534)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"

[project]
name = "django-request-queue-timeout"
version = "1.0.3"
version = "1.0.4"
description = "Django middleware class to quickly dispatch any requests that wait too long in a queue before being processed"
license = {file = "LICENSE.txt"}
readme = "README.md"
dependencies = [
"django >=2.2, <5"
"django >=4.2, <6"
]
keywords = [
"django",
Expand Down