File tree Expand file tree Collapse file tree 2 files changed +23
-13
lines changed Expand file tree Collapse file tree 2 files changed +23
-13
lines changed Original file line number Diff line number Diff line change 1
1
# SQL Views for Postgres
2
2
3
3
[ ![ Circle CI] ( https://circleci.com/gh/mikicz/django-pgviews.png )] ( https://circleci.com/gh/mikicz/django-pgviews )
4
+ [ ![ Code style: black] ( https://img.shields.io/badge/code%20style-black-000000.svg )] ( https://github.com/psf/black )
4
5
5
- Adds first-class support for [ PostgreSQL Views] [ pg-views ] in the Django ORM
6
+ 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+.
6
8
7
9
[ pg-views ] : http://www.postgresql.org/docs/9.1/static/sql-createview.html
8
-
10
+ [ django-pgviews ] : https://github.com/mypebble/django-pgviews
11
+ [ mypebble ] : https://github.com/mypebble
9
12
10
13
## Installation
11
14
12
15
Install via pip:
13
16
14
- pip install django-pgviews
17
+ pip install django-pgviews-redux
15
18
16
19
Add to installed applications in settings.py:
17
20
@@ -316,6 +319,14 @@ Provides args:
316
319
<td>1.10</td>
317
320
<td>0.2.0</td>
318
321
</tr>
322
+ <tr>
323
+ <td>2.2</td>
324
+ <td>0.6.0</td>
325
+ </tr>
326
+ <tr>
327
+ <td>3.0</td>
328
+ <td>0.6.0</td>
329
+ </tr>
319
330
</tbody >
320
331
</table >
321
332
@@ -341,4 +352,5 @@ who have covered this in a bit more detail.
341
352
342
353
## Python 3 Support
343
354
344
- Django PGViews supports Python 3 in versions 0.0.7 and above.
355
+ Django PGViews Redux only supports Python 3.6+.
356
+
Original file line number Diff line number Diff line change 16
16
17
17
18
18
setup (
19
- name = "django-pgviews" ,
20
- version = "0.5.5 " ,
19
+ name = "django-pgviews-redux " ,
20
+ version = "0.6.0 " ,
21
21
description = "Create and manage Postgres SQL Views in Django" ,
22
22
long_description = LONG_DESCRIPTION ,
23
- author = "Scott Walton " ,
24
-
23
+ author = "Mikuláš Poul " ,
24
+
25
25
license = "Public Domain" ,
26
26
packages = find_packages (),
27
- url = "https://github.com/mypebble /django-pgviews" ,
27
+ url = "https://github.com/mikicz /django-pgviews" ,
28
28
classifiers = [
29
29
"Development Status :: 5 - Production/Stable" ,
30
30
"Programming Language :: Python" ,
31
- "Programming Language :: Python :: 2.7" ,
32
31
"Programming Language :: Python :: 3" ,
33
32
"Framework :: Django" ,
34
- "Framework :: Django :: 1.9" ,
35
- "Framework :: Django :: 1.10" ,
36
- "Framework :: Django :: 1.11" ,
33
+ "Framework :: Django :: 2.0" ,
34
+ "Framework :: Django :: 3.0" ,
37
35
],
38
36
)
You can’t perform that action at this time.
0 commit comments