Skip to content

Commit 316fb93

Browse files
committed
Drop support of unsupported versions of Django, add 4.1
1 parent ce7873b commit 316fb93

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
55

66
Adds first-class support for [PostgreSQL Views][pg-views] in the Django ORM.
7-
For of the original [django-pgviews][django-pgviews] by [mypebble][mypebble] with support for Django 2.2+.
7+
Fork of the original [django-pgviews][django-pgviews] by [mypebble][mypebble] with support for Django 3.2+.
88

99
[pg-views]: http://www.postgresql.org/docs/9.1/static/sql-createview.html
1010
[django-pgviews]: https://github.com/mypebble/django-pgviews
@@ -454,6 +454,10 @@ to pin views to specific databases.
454454
<td>4.0</td>
455455
<td>0.8.1</td>
456456
</tr>
457+
<tr>
458+
<td>4.1</td>
459+
<td>0.8.4</td>
460+
</tr>
457461
</tbody>
458462
</table>
459463

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py{37,38,39,310}-dj{22,32},
4-
py{38,39,310}-dj40
3+
py{37,38,39,310}-dj{32},
4+
py{38,39,310}-dj{40,41}
55

66

77
[testenv]
@@ -11,10 +11,9 @@ setenv =
1111
changedir = {toxinidir}/tests/test_project
1212
deps=
1313
-rtests/requirements.txt
14-
dj22: https://github.com/django/django/archive/stable/2.2.x.tar.gz#egg=django
15-
dj31: https://github.com/django/django/archive/stable/3.1.x.tar.gz#egg=django
16-
dj32: https://github.com/django/django/archive/stable/3.1.x.tar.gz#egg=django
14+
dj32: https://github.com/django/django/archive/stable/3.2.x.tar.gz#egg=django
1715
dj40: https://github.com/django/django/archive/stable/4.0.x.tar.gz#egg=django
16+
dj41: https://github.com/django/django/archive/stable/4.1.x.tar.gz#egg=django
1817
commands=
1918
python manage.py test {posargs:test_project.viewtest test_project.multidbtest}
2019
passenv = DB_NAME DB_USER DB_PASSWORD

0 commit comments

Comments
 (0)