mirror of https://github.com/caronc/apprise
parent
89368afe5c
commit
cbd35c3b7e
|
@ -24,7 +24,7 @@
|
||||||
# THE SOFTWARE.
|
# THE SOFTWARE.
|
||||||
|
|
||||||
__title__ = 'apprise'
|
__title__ = 'apprise'
|
||||||
__version__ = '0.7.6'
|
__version__ = '0.7.7'
|
||||||
__author__ = 'Chris Caron'
|
__author__ = 'Chris Caron'
|
||||||
__license__ = 'MIT'
|
__license__ = 'MIT'
|
||||||
__copywrite__ = 'Copyright (C) 2019 Chris Caron <lead2gold@gmail.com>'
|
__copywrite__ = 'Copyright (C) 2019 Chris Caron <lead2gold@gmail.com>'
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
# api key that the BotFather gave you.
|
# api key that the BotFather gave you.
|
||||||
#
|
#
|
||||||
# For example, a url might look like this:
|
# For example, a url might look like this:
|
||||||
# https://api.telegram.org/bot123456789:alphanumeri_characters/getMe
|
# https://api.telegram.org/bot123456789:alphanumeric_characters/getMe
|
||||||
#
|
#
|
||||||
# Development API Reference::
|
# Development API Reference::
|
||||||
# - https://core.telegram.org/bots/api
|
# - https://core.telegram.org/bots/api
|
||||||
|
|
|
@ -54,7 +54,7 @@ Pushover, Rocket.Chat, Slack, Super Toasty, Stride, Telegram, Twilio, Twitter,
|
||||||
XBMC, XMPP, Webex Teams}
|
XBMC, XMPP, Webex Teams}
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 0.7.6
|
Version: 0.7.7
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A simple wrapper to many popular notification services used today
|
Summary: A simple wrapper to many popular notification services used today
|
||||||
License: MIT
|
License: MIT
|
||||||
|
@ -82,8 +82,10 @@ BuildRequires: python-six
|
||||||
BuildRequires: python2-click >= 5.0
|
BuildRequires: python2-click >= 5.0
|
||||||
BuildRequires: python-markdown
|
BuildRequires: python-markdown
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
||||||
|
BuildRequires: python-babel
|
||||||
BuildRequires: python-yaml
|
BuildRequires: python-yaml
|
||||||
%else
|
%else
|
||||||
|
BuildRequires: python2-babel
|
||||||
BuildRequires: python2-yaml
|
BuildRequires: python2-yaml
|
||||||
%endif # using rhel7
|
%endif # using rhel7
|
||||||
|
|
||||||
|
@ -94,11 +96,9 @@ Requires: python2-oauthlib
|
||||||
Requires: python-six
|
Requires: python-six
|
||||||
Requires: python-markdown
|
Requires: python-markdown
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
||||||
BuildRequires: python-yaml
|
Requires: python-yaml
|
||||||
BuildRequires: python-babel
|
|
||||||
%else
|
%else
|
||||||
Requires: python2-yaml
|
Requires: python2-yaml
|
||||||
Requires: python2-babel
|
|
||||||
%endif # using rhel7
|
%endif # using rhel7
|
||||||
|
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
|
@ -170,11 +170,9 @@ BuildRequires: python%{python3_pkgversion}-pytest-runner
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if 0%{?with_python2}
|
%if 0%{?with_python2}
|
||||||
%{__python2} setup.py compile_catalog
|
|
||||||
%py2_build
|
%py2_build
|
||||||
%endif # with_python2
|
%endif # with_python2
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
%{__python3} setup.py compile_catalog
|
|
||||||
%py3_build
|
%py3_build
|
||||||
%endif # with_python3
|
%endif # with_python3
|
||||||
|
|
||||||
|
@ -230,6 +228,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
|
||||||
%endif # with_python2
|
%endif # with_python2
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri May 31 2019 Chris Caron <lead2gold@gmail.com> - 0.7.7-1
|
||||||
|
- Updated to v0.7.7
|
||||||
|
|
||||||
* Tue Apr 16 2019 Chris Caron <lead2gold@gmail.com> - 0.7.6-1
|
* Tue Apr 16 2019 Chris Caron <lead2gold@gmail.com> - 0.7.6-1
|
||||||
- Updated to v0.7.6
|
- Updated to v0.7.6
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -62,7 +62,7 @@ else:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='apprise',
|
name='apprise',
|
||||||
version='0.7.6',
|
version='0.7.7',
|
||||||
description='Push Notifications that work with just about every platform!',
|
description='Push Notifications that work with just about every platform!',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
long_description=open('README.md').read(),
|
long_description=open('README.md').read(),
|
||||||
|
|
Loading…
Reference in New Issue