Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
:target: https://pypi.org/project/explorepy


.. |commits-since| image:: https://img.shields.io/github/commits-since/Mentalab-hub/explorepy/v4.4.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/Mentalab-hub/explorepy/v4.5.0.svg
:alt: Commits since latest release
:target: https://github.com/Mentalab-hub/explorepy/compare/v4.4.0...master
:target: https://github.com/Mentalab-hub/explorepy/compare/v4.5.0...master


.. |wheel| image:: https://img.shields.io/pypi/wheel/explorepy.svg
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
year = '2018-2025'
author = 'Mentalab GmbH.'
copyright = '{0}, {1}'.format(year, author)
version = release = '4.4.0'
version = release = '4.5.0'
pygments_style = 'trac'
templates_path = ['.']
extlinks = {
Expand Down
4 changes: 2 additions & 2 deletions installer/windows/installer.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Application]
name=MentaLab ExplorePy
version=4.4.0
version=4.5.0
entry_point=explorepy.cli:cli
console=true
icon=mentalab.ico
Expand All @@ -26,7 +26,7 @@ pypi_wheels =
decorator==5.1.1
distlib==0.3.7
eeglabio==0.0.2.post4
explorepy==4.4.0
explorepy==4.5.0
fonttools==4.42.1
idna==3.4
importlib-resources==6.0.1
Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'explorepy'
version = "4.4.0"
version = "4.5.0"
license = { text = "MIT" }
readme = { file = "README.rst", content-type = "text/markdown" }
authors = [
Expand All @@ -29,21 +29,21 @@ classifiers = [
]

dependencies = [
'numpy',
'scipy',
'numpy==2.1.3',
'scipy==1.17.1',
'pyEDFlib==0.1.38',
'click==7.1.2',
'appdirs==1.4.3',
'appdirs==1.4.4',
'sentry_sdk==2.8.0',
'mne',
'eeglabio',
'pandas',
'pyserial',
'pyyaml',
'bleak==0.22.3',
'pylsl',
'pylsl==1.18.2',
'numba',
'eegprep']
'eegprep==0.2.23']

[tool.setuptools]
package-dir = {"" = "src"}
Expand All @@ -64,7 +64,7 @@ explorepy = "explorepy.cli:cli"

# bumpoversion config
[tool.bumpversion]
current_version = "4.4.0"
current_version = "4.5.0"
commit = false
tag = false

Expand Down
2 changes: 1 addition & 1 deletion src/explorepy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


__all__ = ["Explore", "command", "tools", "log_config"]
__version__ = '4.4.0'
__version__ = '4.5.0'

this = sys.modules[__name__]
# TODO appropriate library
Expand Down
2 changes: 1 addition & 1 deletion src/explorepy/explore.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def __init__(self, timestamps, signals):
self.timestamps = timestamps
self.signals = signals

def get_data(self, fs):
def get_data(self):
return self.timestamps, self.signals

timestamps = exg_array[:, 0]
Expand Down
Loading