File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 12
12
import miniirc , requests , traceback # type: ignore
13
13
14
14
15
- ver = (0 , 0 , 1 )
15
+ ver = (0 , 0 , 2 )
16
16
__version__ = '.' .join (map (str , ver ))
17
17
18
18
@@ -432,7 +432,7 @@ def connect(self) -> None:
432
432
}
433
433
self .__start_time = math .floor (time .time ()) * 1000
434
434
self .debug ('Starting main loop (Matrix)' )
435
- threading . Thread ( target = self ._main ). start ()
435
+ self ._start_main_loop ()
436
436
437
437
def disconnect (self ) -> None :
438
438
self .connected = False
Original file line number Diff line number Diff line change 5
5
6
6
setup (
7
7
name = 'miniirc_matrix' ,
8
- version = '0.0.1 ' ,
8
+ version = '0.0.2 ' ,
9
9
py_modules = ['miniirc_matrix' ],
10
10
author = 'luk3yx' ,
11
11
description = 'A Matrix wrapper for miniirc.' ,
15
15
long_description_content_type = 'text/markdown' ,
16
16
install_requires = [
17
17
'requests>=2.22.0,<3' ,
18
- 'miniirc>=1.7 .0,<2' ,
18
+ 'miniirc>=1.8 .0,<2' ,
19
19
],
20
20
python_requires = '>=3.8' ,
21
21
You can’t perform that action at this time.
0 commit comments