Skip to content

Commit 490e385

Browse files
robalarmikicz
authored andcommitted
Add django 4.0 support and bump version
1 parent 4ea36c2 commit 490e385

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,10 @@ to pin views to specific databases.
450450
<td>3.2</td>
451451
<td>0.7.1</td>
452452
</tr>
453+
<tr>
454+
<td>4.0</td>
455+
<td>0.8.1</td>
456+
</tr>
453457
</tbody>
454458
</table>
455459

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name="django-pgviews-redux",
16-
version="0.8.0",
16+
version="0.8.1",
1717
description="Create and manage Postgres SQL Views in Django",
1818
long_description=LONG_DESCRIPTION,
1919
long_description_content_type="text/markdown",
@@ -35,5 +35,6 @@
3535
"Framework :: Django :: 2.2",
3636
"Framework :: Django :: 3.1",
3737
"Framework :: Django :: 3.2",
38+
"Framework :: Django :: 4.0",
3839
],
3940
)

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[tox]
2-
envlist = py{36,37,38,39,310}-dj{22,31,32}
2+
envlist =
3+
py{36,37,38,39,310}-dj{22,31,32},
4+
py{38,39,310}-dj40
5+
36

47
[testenv]
58
usedevelop = true
@@ -11,6 +14,7 @@ deps=
1114
dj22: https://github.com/django/django/archive/stable/2.2.x.tar.gz#egg=django
1215
dj31: https://github.com/django/django/archive/stable/3.1.x.tar.gz#egg=django
1316
dj32: https://github.com/django/django/archive/stable/3.1.x.tar.gz#egg=django
17+
dj40: https://github.com/django/django/archive/stable/4.0.x.tar.gz#egg=django
1418
commands=
1519
python manage.py test {posargs:test_project.viewtest test_project.multidbtest}
1620
passenv = DB_NAME DB_USER DB_PASSWORD

0 commit comments

Comments
 (0)