Skip to content

Commit 7871d21

Browse files
committed
Version 0.5.0.
1 parent 11d6909 commit 7871d21

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- marker-before-logo -->
22

33
<p align="center">
4-
<img src="https://media.githubusercontent.com/media/riga/pymitter/master/assets/logo250.png" />
4+
<img src="https://media.githubusercontent.com/media/riga/pymitter/master/assets/logo.png" width="400" />
55
</p>
66

77
<!-- marker-after-logo -->

pymitter/__init__.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,16 @@
1313
__contact__ = "https://github.com/riga/pymitter"
1414
__license__ = "BSD-3-Clause"
1515
__status__ = "Development"
16-
__version__ = "0.4.2"
16+
__version__ = "0.5.0"
1717
__all__ = ["EventEmitter", "Listener"]
1818

19-
import sys
2019
import time
2120
import collections
2221
import fnmatch
2322
import asyncio
2423
from typing import Callable, Awaitable, Sequence, Any
2524

2625

27-
LE_PY36 = sys.version_info[:2] <= (3, 6)
28-
29-
3026
class EventEmitter(object):
3127
"""
3228
The EventEmitter class, ported from Node.js EventEmitter 2.

0 commit comments

Comments
 (0)