From 298cf53e8fd6bb29d65624dcc218c86e4e594435 Mon Sep 17 00:00:00 2001 From: Mike Tigas Date: Thu, 16 Oct 2014 22:52:28 -0400 Subject: [PATCH] 0.3.0, with fixes for python3 --- django_medusa/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/django_medusa/__init__.py b/django_medusa/__init__.py index 4ac3d1c..c359ad9 100644 --- a/django_medusa/__init__.py +++ b/django_medusa/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 1, 0, "dev") +VERSION = (0, 3, 0) def get_version(): version = '%s.%s' % (VERSION[0], VERSION[1]) diff --git a/setup.py b/setup.py index c91e244..dd60c7b 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ 'django', ] -version = __import__('django_medusa').get_version() +version = "0.3.0" setup(name='django-medusa', version=version, @@ -12,7 +12,7 @@ author='Mike Tigas', # update this as needed author_email='mike@tig.as', # update this as needed url='https://github.com/mtigas/django-medusa/', - download_url='https://github.com/mtigas/django-medusa/downloads', + download_url='https://github.com/mtigas/django-medusa/releases/tag/v0.3.0', packages=find_packages(), install_requires=install_requires, license='MIT',