# HG changeset patch # User Thierry Florac # Date 1561540396 -7200 # Node ID 499857f9f7561b6bdbbe49a01e8bfa3d2ddf954d # Parent 6d8e4d38f94d3aeb43dea2b3cf364603ad921610 Version 0.1.9 diff -r 6d8e4d38f94d -r 499857f9f756 buildout.cfg --- a/buildout.cfg Thu Jun 20 12:56:04 2019 +0200 +++ b/buildout.cfg Wed Jun 26 11:13:16 2019 +0200 @@ -2,21 +2,13 @@ eggs-directory = /var/local/env/pyams/eggs extends = http://download.ztfy.org/pyams/pyams-dev.cfg find-links = http://download.ztfy.org/eggs +socket-timeout = 3 -socket-timeout = 3 +versions = versions +#allow-picked-versions = false show-picked-versions = true newest = false -allow-hosts = - bitbucket.org - *.python.org - *.sourceforge.net - github.com - -versions = versions -newest = false -#allow-picked-versions = false - src = src develop = . @@ -72,4 +64,4 @@ eggs = pyams_notify [test] [versions] -pyams_notify = 0.1.8.3 +pyams_notify = 0.1.9 diff -r 6d8e4d38f94d -r 499857f9f756 docs/HISTORY.txt --- a/docs/HISTORY.txt Thu Jun 20 12:56:04 2019 +0200 +++ b/docs/HISTORY.txt Wed Jun 26 11:13:16 2019 +0200 @@ -1,6 +1,10 @@ History ======= +0.1.9 +----- + - handle errors in websockets response + 0.1.8.3 ------- - updated resources management diff -r 6d8e4d38f94d -r 499857f9f756 setup.py --- a/setup.py Thu Jun 20 12:56:04 2019 +0200 +++ b/setup.py Wed Jun 26 11:13:16 2019 +0200 @@ -13,6 +13,7 @@ """ This module contains pyams_notify package """ + import os from setuptools import setup, find_packages @@ -22,7 +23,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.8.3' +version = '0.1.9' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] diff -r 6d8e4d38f94d -r 499857f9f756 src/pyams_notify.egg-info/PKG-INFO --- a/src/pyams_notify.egg-info/PKG-INFO Thu Jun 20 12:56:04 2019 +0200 +++ b/src/pyams_notify.egg-info/PKG-INFO Wed Jun 26 11:13:16 2019 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-notify -Version: 0.1.8.3 +Version: 0.1.9 Summary: PyAMS notifications management package Home-page: http://hg.ztfy.org/pyams/pyams_notify Author: Thierry Florac @@ -21,6 +21,10 @@ History ======= + 0.1.9 + ----- + - handle errors in websockets response + 0.1.8.3 ------- - updated resources management