Skip to content

Commit

Permalink
Slight modificytions in the README.rst file as it had a syntax error.…
Browse files Browse the repository at this point in the history
… Also modified the internal CustomWidgets imports
  • Loading branch information
ArJaVer committed Oct 15, 2024
1 parent 0025b4f commit c88fc95
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 10 deletions.
12 changes: 9 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ If you want to help develop and contribute to the package, first clone
the repository to your PC and install in editable mode (detailed
tutorial is about to come)::

git clone https://github.com/exp4-age/evaluix.git
cd evaluix
pip install -e .

Recommendation for Students and Beginners
----------------------------------------
-----------------------------------------

Install Anaconda and create a new environment with Python 3.9 or higher. Activate it in an anaconda prompt
and install evaluix as follows ::

conda create -n myevaluix python=3.9

conda activate myevaluix
Expand All @@ -34,7 +38,9 @@ and install evaluix as follows ::

pip install evaluix

Now you can start the software by typing `evaluix` in the anaconda prompt. ::
Now you can start the software by typing `evaluix` in the anaconda prompt ::

conda activate myevaluix (if not already activated)

evaluix

Expand Down
10 changes: 5 additions & 5 deletions src/evaluix/GUIs/CustomWidgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@

# Import converted .ui files for the custom widgets
try:
from evaluix.GUIs.Btn_InfoSettings import Ui_infosett_dialog
from evaluix.GUIs.ProfileAndMacros import Ui_profilemacros_dialog
from evaluix.GUIs.HDF5Preview import Ui_hdf5preview_dialog
from evaluix.GUIs.ManualDataDialog import Ui_ManualDataInput_mdi
from evaluix.GUIs.FunctionViewer import Ui_functionviewer_dialog
from .GUIs.Btn_InfoSettings import Ui_infosett_dialog
from .GUIs.ProfileAndMacros import Ui_profilemacros_dialog
from .GUIs.HDF5Preview import Ui_hdf5preview_dialog
from .GUIs.ManualDataDialog import Ui_ManualDataInput_mdi
from .GUIs.FunctionViewer import Ui_functionviewer_dialog
except ImportError:
from GUIs.Btn_InfoSettings import Ui_infosett_dialog
from GUIs.ProfileAndMacros import Ui_profilemacros_dialog
Expand Down
2 changes: 1 addition & 1 deletion src/evaluix/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.1.23"
__version__ = "0.9.1.24"
2 changes: 1 addition & 1 deletion src/evaluix/utils/EvaluixConfig.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version: '"0.9.1.21"'
Version: '"0.9.1.24"'
EvaluixConfig: EvaluixConfig.yaml
ProfileConfig: DefaultProfile.yaml
conversion_factors:
Expand Down
Empty file added src/evaluix/utils/__init__.py
Empty file.
1 change: 1 addition & 0 deletions src/evaluix/utils/logger_2024-10-15.log
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@
2024-10-15 14:24:03,607 - utils.FileLoader.FileLogger - INFO - log_message - Initializing the data dictionary.
2024-10-15 14:32:29,254 - utils.FileLoader.FileLogger - INFO - log_message - Initializing the data dictionary.
2024-10-15 14:33:20,453 - utils.FileLoader.FileLogger - INFO - log_message - Initializing the data dictionary.
2024-10-15 15:08:34,699 - utils.FileLoader.FileLogger - INFO - log_message - Initializing the data dictionary.

0 comments on commit c88fc95

Please sign in to comment.