Skip to content

Commit

Permalink
can't build using tox using central versioning - rolling back
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Oct 15, 2018
1 parent ffec24e commit 7ed2c91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion apprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# GNU Lesser General Public License for more details.

__title__ = 'apprise'
__version__ = '0.5.1'
__version__ = '0.5.2'
__author__ = 'Chris Caron <[email protected]>'
__license__ = 'GPLv3'
__copywrite__ = 'Copyright 2017-2018 Chris Caron <[email protected]>'
Expand Down
11 changes: 1 addition & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@

import os
import platform
import sys
from os.path import join
from os.path import abspath
from os.path import dirname
try:
from setuptools import setup

Expand All @@ -30,11 +26,6 @@

from setuptools import find_packages

# Include 'this' library to allow a single location for
# version referencing
sys.path.insert(0, join(dirname(abspath(__file__)), 'apprise'))
from apprise import __version__ as version

install_options = os.environ.get("APPRISE_INSTALL", "").split(",")
install_requires = open('requirements.txt').readlines()
if platform.system().lower().startswith('win'):
Expand All @@ -51,7 +42,7 @@

setup(
name='apprise',
version=version,
version='0.5.2',
description='A universal notification service',
license='GPLv3',
long_description=open('README').read(),
Expand Down

0 comments on commit 7ed2c91

Please sign in to comment.