Skip to content
This repository has been archived by the owner on Dec 3, 2019. It is now read-only.

Commit

Permalink
0.3.0, with fixes for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
mtigas committed Oct 17, 2014
1 parent d03a349 commit 298cf53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion django_medusa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 1, 0, "dev")
VERSION = (0, 3, 0)

def get_version():
version = '%s.%s' % (VERSION[0], VERSION[1])
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
'django',
]

version = __import__('django_medusa').get_version()
version = "0.3.0"

setup(name='django-medusa',
version=version,
description='A Django static website generator.',
author='Mike Tigas', # update this as needed
author_email='[email protected]', # 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',
Expand Down

0 comments on commit 298cf53

Please sign in to comment.