-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix up versions of python/django in setup
- Loading branch information
Tobin Brown
committed
Feb 4, 2020
1 parent
8043c02
commit 633d7ff
Showing
2 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
import random | ||
|
||
|
||
__version__ = '0.2.0' | ||
__version__ = '0.2.1' | ||
|
||
|
||
class Seed(object): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ def find_version(*file_paths): | |
name='django-seed', | ||
version=find_version('django_seed', '__init__.py'), | ||
author='Tobin Brown', | ||
author_email='[email protected]', | ||
author_email='[email protected]', | ||
packages=['django_seed', 'django_seed.management', 'django_seed.management.commands'], | ||
include_package_data=True, | ||
url='http://github.com/brobin/django-seed', | ||
|
@@ -41,15 +41,16 @@ def find_version(*file_paths): | |
'License :: OSI Approved :: MIT License', | ||
'Framework :: Django', | ||
'Framework :: Django :: 1.11', | ||
'Framework :: Django :: 2.0', | ||
'Framework :: Django :: 2.2', | ||
'Framework :: Django :: 3.0', | ||
'Natural Language :: English', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Topic :: Software Development :: Testing', | ||
'Topic :: Utilities', | ||
|