[Pkg-bitcoin-commits] [python-quamash] 190/269: Version 0.4.1 Release

Jonas Smedegaard dr at jones.dk
Fri Nov 24 11:26:31 UTC 2017


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository python-quamash.

commit 07b702448d81327bc78ee9044f617bbb7ca5d081
Author: Mark Harviston <mark.harviston at gmail.com>
Date:   Fri Jan 9 15:20:12 2015 -0800

    Version 0.4.1 Release
---
 README.rst               | 7 ++++++-
 quamash/__init__.py      | 2 +-
 tests/test_qeventloop.py | 7 +------
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/README.rst b/README.rst
index 1dc78af..4827b3d 100644
--- a/README.rst
+++ b/README.rst
@@ -80,6 +80,12 @@ Usage
 Changelog
 =========
 
+Version 0.4.1
+-------------
+
+* Improvements to PEP-3156 Conformance
+* Minor Test Improvements
+
 Version 0.4
 -----------
 * Major improvements to tests
@@ -94,7 +100,6 @@ Version 0.4
 * PyQt5 Support
 * Support ``multiprocessing`` executors (``ProcessPoolExecutor``))
 * Improvements to code quality
-* Improvements to PEP-3156 Conformance
 
 Version 0.3
 -----------
diff --git a/quamash/__init__.py b/quamash/__init__.py
index 79f56c9..5e6dd40 100644
--- a/quamash/__init__.py
+++ b/quamash/__init__.py
@@ -4,7 +4,7 @@
 """ Implementation of the PEP 3156 Event-Loop with Qt. """
 
 __author__ = 'Mark Harviston <mark.harviston at gmail.com>, Arve Knudsen <arve.knudsen at gmail.com>'
-__version__ = '0.4'
+__version__ = '0.4.1'
 __url__ = 'https://github.com/harvimt/quamash'
 __license__ = 'BSD'
 
diff --git a/tests/test_qeventloop.py b/tests/test_qeventloop.py
index 00ae9ef..ce68239 100644
--- a/tests/test_qeventloop.py
+++ b/tests/test_qeventloop.py
@@ -610,12 +610,7 @@ def test_add_writer_replace(loop, sock_pair):
 		yield from callback_invoked
 		loop.remove_writer(c_sock.fileno())
 
-	client_done = asyncio.async(client_coro())
-
-	both_done = asyncio.wait(
-		[client_done],
-		return_when=asyncio.FIRST_EXCEPTION)
-	loop.run_until_complete(asyncio.wait_for(both_done, timeout=0.1))
+	loop.run_until_complete(asyncio.wait_for(client_coro(), timeout=0.1))
 	assert not called1
 	assert called2
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-bitcoin/python-quamash.git



More information about the Pkg-bitcoin-commits mailing list