[Python-modules-commits] [drf-generators] 01/05: Import drf-generators_0.2.8.orig.tar.gz

Michael Fladischer fladi at moszumanska.debian.org
Thu Feb 25 08:51:59 UTC 2016


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch master
in repository drf-generators.

commit ef17ebd5ac88254b7466f71156830a6a72488e02
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Thu Feb 25 09:12:15 2016 +0100

    Import drf-generators_0.2.8.orig.tar.gz
---
 PKG-INFO                                       | 9 ++++-----
 README.rst                                     | 2 +-
 drf_generators.egg-info/PKG-INFO               | 9 ++++-----
 drf_generators/management/commands/generate.py | 4 ++--
 setup.cfg                                      | 2 +-
 setup.py                                       | 7 +++----
 6 files changed, 15 insertions(+), 18 deletions(-)

diff --git a/PKG-INFO b/PKG-INFO
index 02cf4db..891434b 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: drf-generators
-Version: 0.2.7
+Version: 0.2.8
 Summary: Generate DRF Serializers, Views, and urls for your API aplication.
 Home-page: https://github.com/brobin/drf-generators
 Author: Tobin Brown
 Author-email: tobin at brobin.me
 License: MIT
-Download-URL: https://github.com/brobin/drf-generators/archive/0.2.7.zip
+Download-URL: https://github.com/brobin/drf-generators/archive/0.2.8.zip
 Description: ==============
         DRF Generators
         ==============
@@ -283,7 +283,7 @@ Description: ==============
             :target: http://djangoproject.com/
             :alt: Django 1.7, 1.8
         
-        .. |drf| image:: https://img.shields.io/badge/DRF-3.2, 3.2-orange.svg?style=flat-square
+        .. |drf| image:: https://img.shields.io/badge/DRF-3.1, 3.2-orange.svg?style=flat-square
             :target: http://www.django-rest-framework.org/
             :alt: DRF 3.0, 3.1
         
@@ -292,13 +292,12 @@ Platform: UNKNOWN
 Classifier: Environment :: Web Environment
 Classifier: Framework :: Django :: 1.7
 Classifier: Framework :: Django :: 1.8
+Classifier: Framework :: Django :: 1.9
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: MIT License
 Classifier: Operating System :: OS Independent
 Classifier: Natural Language :: English
 Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.2
-Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Topic :: Internet :: WWW/HTTP
diff --git a/README.rst b/README.rst
index ec18799..3e9f6e3 100644
--- a/README.rst
+++ b/README.rst
@@ -274,6 +274,6 @@ MIT License. See `LICENSE <https://github.com/brobin/drf-generators/blob/master/
     :target: http://djangoproject.com/
     :alt: Django 1.7, 1.8
 
-.. |drf| image:: https://img.shields.io/badge/DRF-3.2, 3.2-orange.svg?style=flat-square
+.. |drf| image:: https://img.shields.io/badge/DRF-3.1, 3.2-orange.svg?style=flat-square
     :target: http://www.django-rest-framework.org/
     :alt: DRF 3.0, 3.1
diff --git a/drf_generators.egg-info/PKG-INFO b/drf_generators.egg-info/PKG-INFO
index 02cf4db..891434b 100644
--- a/drf_generators.egg-info/PKG-INFO
+++ b/drf_generators.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: drf-generators
-Version: 0.2.7
+Version: 0.2.8
 Summary: Generate DRF Serializers, Views, and urls for your API aplication.
 Home-page: https://github.com/brobin/drf-generators
 Author: Tobin Brown
 Author-email: tobin at brobin.me
 License: MIT
-Download-URL: https://github.com/brobin/drf-generators/archive/0.2.7.zip
+Download-URL: https://github.com/brobin/drf-generators/archive/0.2.8.zip
 Description: ==============
         DRF Generators
         ==============
@@ -283,7 +283,7 @@ Description: ==============
             :target: http://djangoproject.com/
             :alt: Django 1.7, 1.8
         
-        .. |drf| image:: https://img.shields.io/badge/DRF-3.2, 3.2-orange.svg?style=flat-square
+        .. |drf| image:: https://img.shields.io/badge/DRF-3.1, 3.2-orange.svg?style=flat-square
             :target: http://www.django-rest-framework.org/
             :alt: DRF 3.0, 3.1
         
@@ -292,13 +292,12 @@ Platform: UNKNOWN
 Classifier: Environment :: Web Environment
 Classifier: Framework :: Django :: 1.7
 Classifier: Framework :: Django :: 1.8
+Classifier: Framework :: Django :: 1.9
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: MIT License
 Classifier: Operating System :: OS Independent
 Classifier: Natural Language :: English
 Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.2
-Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Topic :: Internet :: WWW/HTTP
diff --git a/drf_generators/management/commands/generate.py b/drf_generators/management/commands/generate.py
index 9014caf..9a089cb 100644
--- a/drf_generators/management/commands/generate.py
+++ b/drf_generators/management/commands/generate.py
@@ -47,7 +47,7 @@ class Command(AppCommand):
             views = options['views'] if 'views' in options else False
             urls = options['urls'] if 'urls' in options else False
 
-        elif django.VERSION[1] == 8:
+        elif django.VERSION[1] >= 8:
             force = options['force']
             format = options['format']
             depth = options['depth']
@@ -55,7 +55,7 @@ class Command(AppCommand):
             views = options['views']
             urls = options['urls']
         else:
-            raise CommandError('You must be using Django 1.7 or 1.8')
+            raise CommandError('You must be using Django 1.7, 1.8 or 1.9')
 
         if format == 'viewset':
             generator = ViewSetGenerator(app_config, force)
diff --git a/setup.cfg b/setup.cfg
index fbb3ca0..29d232e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,7 @@
 universal = 1
 
 [egg_info]
-tag_build = 
 tag_svn_revision = 0
+tag_build = 
 tag_date = 0
 
diff --git a/setup.py b/setup.py
index 8bc31a4..780d241 100644
--- a/setup.py
+++ b/setup.py
@@ -8,13 +8,13 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 
 setup(
     name='drf-generators',
-    version='0.2.7',
+    version='0.2.8',
 
     description='Generate DRF Serializers, Views, and urls for your API aplication.',
     long_description=README,
 
     url='https://github.com/brobin/drf-generators',
-    download_url = 'https://github.com/brobin/drf-generators/archive/0.2.7.zip',
+    download_url = 'https://github.com/brobin/drf-generators/archive/0.2.8.zip',
     author='Tobin Brown',
     author_email='tobin at brobin.me',
 
@@ -28,13 +28,12 @@ setup(
         'Environment :: Web Environment',
         'Framework :: Django :: 1.7',
         'Framework :: Django :: 1.8',
+        'Framework :: Django :: 1.9',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: MIT License',
         'Operating System :: OS Independent',
         'Natural Language :: English',
         'Programming Language :: Python :: 2.7',
-        'Programming Language :: Python :: 3.2',
-        'Programming Language :: Python :: 3.3',
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Topic :: Internet :: WWW/HTTP',

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/drf-generators.git



More information about the Python-modules-commits mailing list