Skip to content

Commit 633d7ff

Browse files
author
Tobin Brown
committed
fix up versions of python/django in setup
1 parent 8043c02 commit 633d7ff

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

django_seed/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import random
33

44

5-
__version__ = '0.2.0'
5+
__version__ = '0.2.1'
66

77

88
class Seed(object):

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def find_version(*file_paths):
2929
name='django-seed',
3030
version=find_version('django_seed', '__init__.py'),
3131
author='Tobin Brown',
32-
author_email='tobin@brobin.me',
32+
author_email='tobinjbrown@gmail.com',
3333
packages=['django_seed', 'django_seed.management', 'django_seed.management.commands'],
3434
include_package_data=True,
3535
url='http://github.com/brobin/django-seed',
@@ -41,15 +41,16 @@ def find_version(*file_paths):
4141
'License :: OSI Approved :: MIT License',
4242
'Framework :: Django',
4343
'Framework :: Django :: 1.11',
44-
'Framework :: Django :: 2.0',
44+
'Framework :: Django :: 2.2',
45+
'Framework :: Django :: 3.0',
4546
'Natural Language :: English',
4647
'Programming Language :: Python',
47-
'Programming Language :: Python :: 2',
48-
'Programming Language :: Python :: 2.7',
4948
'Programming Language :: Python :: 3',
5049
'Programming Language :: Python :: 3.4',
5150
'Programming Language :: Python :: 3.5',
5251
'Programming Language :: Python :: 3.6',
52+
'Programming Language :: Python :: 3.7',
53+
'Programming Language :: Python :: 3.8',
5354
'Topic :: Software Development :: Libraries :: Python Modules',
5455
'Topic :: Software Development :: Testing',
5556
'Topic :: Utilities',

0 commit comments

Comments
 (0)