diff options
| author | James Bennett <james@b-list.org> | 2012-10-25 14:18:06 -0500 |
|---|---|---|
| committer | James Bennett <james@b-list.org> | 2012-10-25 14:18:06 -0500 |
| commit | ed96292833e78c07f7c7bce5e38794a3b9c4201c (patch) | |
| tree | 71613cf9e403987b48b2e772b94e6d78b41c72d6 | |
| parent | e8b258895adec3d892ada30722517976b298e420 (diff) | |
[1.5.x] Bump version information and classifiers for 1.5 alpha release.
| -rw-r--r-- | django/__init__.py | 2 | ||||
| -rw-r--r-- | setup.py | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/django/__init__.py b/django/__init__.py index 32e1374765..5d290ef09b 100644 --- a/django/__init__.py +++ b/django/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 5, 0, 'alpha', 0) +VERSION = (1, 5, 0, 'alpha', 1) def get_version(*args, **kwargs): # Don't litter django/__init__.py with all the get_version stuff. @@ -92,13 +92,13 @@ setup( author = 'Django Software Foundation', author_email = 'foundation@djangoproject.com', description = 'A high-level Python Web framework that encourages rapid development and clean, pragmatic design.', - download_url = 'https://www.djangoproject.com/m/releases/1.4/Django-1.4.tar.gz', + download_url = 'https://www.djangoproject.com/m/releases/1.5/Django-1.5.tar.gz', packages = packages, cmdclass = cmdclasses, data_files = data_files, scripts = ['django/bin/django-admin.py'], classifiers = [ - 'Development Status :: 5 - Production/Stable', + 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', @@ -107,6 +107,10 @@ setup( 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.0', + 'Programming Language :: Python :: 3.1', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Internet :: WWW/HTTP :: WSGI', |
