Skip to content
Open
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
19 changes: 7 additions & 12 deletions .github/workflows/test-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,39 +5,34 @@ jobs:
test:
services:
postgres:
image: postgres:13
image: postgres:14
env:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
django-version:
- "4.2"
- "5.0"
- "5.1"
- "5.2"
drf-version:
- "3.15"
exclude:
- python-version: "3.9"
django-version: "5.0"
- python-version: "3.9"
django-version: "5.1"
- "3.16"

steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 3 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,17 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
django-version:
- "4.2"
- "5.0"
- "5.1"
- "5.2"
drf-version:
- "3.15"
exclude:
- python-version: "3.9"
django-version: "5.0"
- python-version: "3.9"
django-version: "5.1"
- "3.16"

steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ PyPi: [https://pypi.org/project/django-rest-passwordreset/](https://pypi.org/pro

## [Unreleased]

### Added
- Added Python 3.14 support (in classifiers for forward compatibility)
- Added Django 5.2 LTS support
- Added Django Rest Framework 3.16 support

### Changed
- Removed Python 3.9 support (end of life)
- Removed Django 5.0 support (end of life)
- Updated CI/CD pipelines to test against currently supported Python and Django versions
- Updated PostgreSQL test service to version 14 (required by Django 5.2)

## [1.5.0]

- Added Python 3.13 support
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ django-rest-passwordreset Version | Django Versions | Django Rest Framework
1.3 | 3.2, 4.0, 4.1 | 3.12, 3.13, 3.14 | 3.7 - 3.10
1.4 | 3.2, 4.2, 5.0 | 3.13, 3.14 | 3.8 - 3.12
1.5 | 4.2, 5.0, 5.1 | 3.15 | 3.9 - 3.13
1.6 (current) | 4.2, 5.1, 5.2 | 3.15 - 3.16 | 3.10 - 3.14

## Documentation / Browsable API

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'Framework :: Django :: 5.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
Expand Down
4 changes: 2 additions & 2 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
django>=2.2,<3.3
djangorestframework>=3.12.4,<3.13
django>=4.2
djangorestframework>=3.16