Skip to content

Commit

Permalink
0.3.04
Browse files Browse the repository at this point in the history
  • Loading branch information
semiautomaticgit committed Dec 29, 2023
1 parent 4a081e1 commit 8340f31
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
5 changes: 5 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
===============

v0.3.04
________

* Fixed Jupyter interface

v0.3.03
________

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
project = 'Remotior Sensus'
copyright = '2022-2023, Luca Congedo'
author = 'Luca Congedo'
release = '0.3.03'
version = '0.3.03.1'
release = '0.3.04'
version = '0.3.04.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/remotior_sensus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
from remotior_sensus.core.session import Session
from remotior_sensus.core import configurations

__version__ = '0.3.03'
__version__ = '0.3.04'

configurations.version = __version__
3 changes: 1 addition & 2 deletions src/remotior_sensus/ui/jupyter.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
try:
import ipywidgets as widgets
from IPython.display import display
ipywidgets_version = widgets.__version__
except Exception as error:
try:
cfg.logger.log.error(str(error))
Expand All @@ -55,8 +56,6 @@
except Exception as error:
str(error)


ipywidgets_version = widgets.__version__
""" Progress messages """
msg_label_main = msg_label = messages_row = progress_widget = None
tot_remaining = ''
Expand Down

0 comments on commit 8340f31

Please sign in to comment.