Skip to content

Commit

Permalink
updates version
Browse files Browse the repository at this point in the history
  • Loading branch information
hugobessa committed Aug 31, 2017
2 parents c51fe69 + 228fde1 commit c60a81c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion celerybeat_status/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = 'CeleryBeat Status'
__version__ = '0.0.4'
__version__ = '0.0.7'
__author__ = 'Vinta Software'
__license__ = 'MIT License'
__copyright__ = 'Copyright 2017 Vinta Serviços e Soluções Tecnológicas Ltda'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<ul>
<li><strong>{% trans 'Is due?' %}</strong> {% if task.is_due %} {% trans 'Yes' %} {% else %} {% trans 'No' %} {% endif %} </li>
<li><strong>{% trans 'Next execution:' %}</strong> {{ task.next_execution | date:"m/d/Y fa e" }}</li>
<li><strong>{% trans 'Task:' %}</strong> {{ task.next_execution | date:"m/d/Y fa e" }}</li>
<li><strong>{% trans 'Task:' %}</strong> {{ task.task }}</li>
<li><strong>{% trans 'Arguments:' %}</strong> {{ task.args }}</li>
<li><strong>{% trans 'Keyword Arguments:' %}</strong> {{ task.kwargs }}</li>
</ul>
Expand Down
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,13 @@

from setuptools import setup

long_description = ''
try:
from pypandoc import convert

def read_md(f):
return convert(f, 'rst')
long_description = convert('README.md', 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")

def read_md(f):
return open(f, 'r', encoding='utf-8').read()


def get_version(package):
"""
Expand Down Expand Up @@ -80,7 +76,7 @@ def get_package_data(package):
version=version,
license='MIT',
description='A simple django admin extension that shows when your periodic are going to run next',
long_description=read_md('README.md'),
long_description=long_description,
author='Vinta Software',
author_email='contact@vinta.com.br',
packages=get_packages('celerybeat_status'),
Expand Down

0 comments on commit c60a81c

Please sign in to comment.