Skip to content

Commit 2bf73ea

Browse files
add support for Django 5.2 (#64)
1 parent cc7f60d commit 2bf73ea

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
1818

1919
## [Unreleased]
2020

21+
### Added
22+
23+
- Added support for Django 5.2.
24+
2125
### Fixed
2226

2327
- Fixed a discrepancy between what the documentation showed about the type expected for `APP_ID` in the `GITHUB_APP` settings dictionary and how the library actually used the setting when creating a new `Installation` instance via the `acreate_from_event`/`create_from_event` custom manager methods.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
[![PyPI](https://img.shields.io/pypi/v/django-github-app)](https://pypi.org/project/django-github-app/)
44
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-github-app)
5-
![Django Version](https://img.shields.io/badge/django-4.2%20%7C%205.0%20%7C%205.1-%2344B78B?labelColor=%23092E20)
5+
![Django Version](https://img.shields.io/badge/django-4.2%20%7C%205.0%20%7C%205.1%20%7C%205.2-%2344B78B?labelColor=%23092E20)
66
<!-- https://shields.io/badges -->
7-
<!-- django-4.2 | 5.0 | 5.1-#44B78B -->
7+
<!-- django-4.2 | 5.0 | 5.1 | 5.2-#44B78B -->
88
<!-- labelColor=%23092E20 -->
99

1010
A Django toolkit providing the batteries needed to build GitHub Apps - from webhook handling to API integration.
@@ -16,7 +16,7 @@ Fully supports both sync (WSGI) and async (ASGI) Django applications.
1616
## Requirements
1717

1818
- Python 3.10, 3.11, 3.12, 3.13
19-
- Django 4.2, 5.0, 5.1
19+
- Django 4.2, 5.0, 5.1, 5.2
2020

2121
## Installation
2222

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
DJ42 = "4.2"
2121
DJ50 = "5.0"
2222
DJ51 = "5.1"
23-
DJ52 = "5.2b1"
23+
DJ52 = "5.2"
2424
DJMAIN = "main"
2525
DJMAIN_MIN_PY = PY312
2626
DJ_VERSIONS = [DJ42, DJ50, DJ51, DJ52, DJMAIN]

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ classifiers = [
3737
"Framework :: Django :: 4.2",
3838
"Framework :: Django :: 5.0",
3939
"Framework :: Django :: 5.1",
40+
"Framework :: Django :: 5.2",
4041
"License :: OSI Approved :: MIT License",
4142
"Operating System :: OS Independent",
4243
"Programming Language :: Python",

0 commit comments

Comments
 (0)