Skip to content

Commit 47def68

Browse files
committed
Prepare for release 2.3
1 parent b6472d2 commit 47def68

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

AUTHORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Contributors are listed in alphabetical order by GitHub login.
3737
* [Thomas Fillon (thomasfillon)](https://github.com/thomasfillon)[1+](https://github.com/jrief/django-angular/commits?author=thomasfillon)/[1+](https://github.com/jrief/django-angular/issues?q=author%3Athomasfillon)
3838
* [Tino de Bruijn (tino)](https://github.com/tino)[1+](https://github.com/jrief/django-angular/commits?author=tino)/[1+](https://github.com/jrief/django-angular/issues?q=author%3Atino)
3939
* [Ulrich Wagner (viaregio)](https://github.com/viaregio)[3+](https://github.com/jrief/django-angular/commits?author=viaregio)/[2+](https://github.com/jrief/django-angular/issues?q=author%3Aviaregio)
40+
* [Oshosanya Michael (oshosanya)](https://github.com/oshosanya)
4041

4142
Numbers link to commits/issues.
4243
For simplicity, this file is maintained only in English.

djng/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
13. git push
1919
"""
2020

21-
__version__ = '2.2.4'
21+
__version__ = '2.3'
2222

2323
default_app_config = 'djng.app_config.DjangoAngularConfig'

setup.py

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
from __future__ import unicode_literals
4-
52
from setuptools import setup, find_packages
63
from djng import __version__
74

@@ -19,16 +16,13 @@
1916
'Programming Language :: Python',
2017
'Topic :: Software Development :: Libraries :: Python Modules',
2118
'Development Status :: 5 - Production/Stable',
22-
'Programming Language :: Python :: 2.7',
23-
'Programming Language :: Python :: 3.4',
2419
'Programming Language :: Python :: 3.5',
2520
'Programming Language :: Python :: 3.6',
2621
'Programming Language :: Python :: 3.7',
27-
'Framework :: Django :: 1.10',
28-
'Framework :: Django :: 1.11',
29-
'Framework :: Django :: 2.0',
22+
'Programming Language :: Python :: 3.8',
3023
'Framework :: Django :: 2.1',
3124
'Framework :: Django :: 2.2',
25+
'Framework :: Django :: 3.0',
3226
]
3327

3428
setup(
@@ -37,7 +31,7 @@
3731
author='Jacob Rief',
3832
author_email='[email protected]',
3933
description=DESCRIPTION,
40-
install_requires=['django>=1.10'],
34+
install_requires=['django>=2.1'],
4135
long_description=long_description,
4236
long_description_content_type='text/markdown',
4337
url='https://github.com/jrief/django-angular',

0 commit comments

Comments
 (0)