Skip to content

Commit e55eb79

Browse files
committed
Fix import bug
1 parent abc2577 commit e55eb79

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

PyPI/HISTORY.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# EmotivCortex2Client Changelog
22

3+
## v1.0.1 - 2019_07_09
4+
5+
### Changed
6+
7+
- Fixed submodule import bug
8+
9+
10+
311
## v1.0.0 - 2019_07_09
412

513
### Added

cortex2/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from .emotiv_cortex2_client import EmotivCortex2Client
2+
23
__all__ = [
34
'EmotivCortex2Client'
45
]

cortex2/emotiv_cortex2_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
3838
"""
3939

40-
from .lib.WebsocketClient import WebsocketClient
40+
from .lib import WebsocketClient
4141

4242
from collections import deque, OrderedDict
4343
from threading import Thread, Event

cortex2/lib/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .WebsocketClient import *

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
HISTORY = history_file.read()
66

77
setup_args = {'name': "cortex2",
8-
'version': "1.0.0.post3",
8+
'version': "1.0.1",
99
'description': "Comprehensive threaded, asynchronous Python client for the Emotiv EEG Cortex 2 API",
1010
'long_description_content_type': "text/markdown",
1111
'long_description': README + '\n\n' + HISTORY,

0 commit comments

Comments
 (0)