Skip to content

Commit 0ed620d

Browse files
committed
0.6.1: test against Django 5.2
1 parent 92925a6 commit 0ed620d

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
python-version: ["3.9", "3.10", "3.11", "3.12"]
1313

1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v4
1616
- uses: niden/actions-memcached@v7
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies

docs/changes.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Version history
22
###############
33

4+
Version 0.6.1 (unreleased)
5+
==========================
6+
* Django 5.2 support
7+
48

59
Version 0.6.0
610
==============

front/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 6, 0)
1+
VERSION = (0, 6, 1)
22

33

44
def get_version(limit=3):

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def run_tests(self):
5252
"Framework :: Django",
5353
"Framework :: Django :: 4.2",
5454
"Framework :: Django :: 5.0",
55+
"Framework :: Django :: 5.2",
5556
"Programming Language :: Python :: 3.9",
5657
"Programming Language :: Python :: 3.10",
5758
"Programming Language :: Python :: 3.11",

tox.ini

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
envlist =
33
py{39,310}-django42,
44
py{310,311,312}-django50,
5+
py{310,311,312}-django52,
56
flake8,
67
docs
78
skipsdist = True
@@ -10,9 +11,9 @@ skipsdist = True
1011
[gh-actions]
1112
python =
1213
3.9: py39-django42, flake8, docs
13-
3.10: py310-django42, py310-django50
14-
3.11: py311-django42, py311-django50
15-
3.12: py312-django50
14+
3.10: py310-django42, py310-django50, py310-django52,
15+
3.11: py311-django42, py311-django50, py311-django52,
16+
3.12: py312-django50, py312-django52
1617

1718

1819
[testenv]
@@ -26,6 +27,7 @@ setenv =
2627
deps =
2728
django42: Django>=4.2a,<4.3
2829
django50: Django>=5.0,<5.1
30+
django52: Django>=5.2,<5.3
2931

3032
pymemcache
3133
coverage
@@ -36,7 +38,7 @@ deps =
3638

3739
[testenv:flake8]
3840
basepython = python3
39-
deps = flake8==3.9.2
41+
deps = flake8
4042
commands=
4143
flake8 {toxinidir}/front
4244

0 commit comments

Comments
 (0)