From 1c58d2c2daa81244fcfa1559dac4923ee0bf664a Mon Sep 17 00:00:00 2001 From: Alexey Shkarin Date: Thu, 23 Dec 2021 18:00:05 +0100 Subject: [PATCH] Update to 2.1.2 --- docs/changelog.rst | 11 +++++++++++ docs/conf.py | 2 +- docs/expanding.rst | 2 +- utils/__init__.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index d84656a..c3d4418 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,6 +3,17 @@ Release history ============================ +`Version 2.1.2 `__ +--------------------------------------------------------------------------------------------------------------------------------------------- + +2021-12-23 + +* Graphics and UI update: added launcher executables, "About" windows, popup error messages. + +`Download `__ + +| + `Version 2.1.1 `__ --------------------------------------------------------------------------------------------------------------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index c219c4f..f8a009a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '2.1.1' +release = '2.1.2' # -- General configuration --------------------------------------------------- diff --git a/docs/expanding.rst b/docs/expanding.rst index 489ea15..2c6bb99 100644 --- a/docs/expanding.rst +++ b/docs/expanding.rst @@ -25,7 +25,7 @@ where ``"some-package"`` is the name of the package to install (e.g., ``"scikit- Running from source ~~~~~~~~~~~~~~~~~~~~~~ -It is also possible to run cam-control in your own Python environment. All of the required code is contained in ``cam-control`` folder and can be obtained either on `GitHub `__ or directly from the folder. To run it, you also need to install the necessary dependencies: `NumPy `_, `SciPy `_, `pandas `_, `Numba `_, `RPyC `_, `PyQt5 `_ (or `PySide2 `_ with `shiboken2 `_), `pyqtgraph `_, and `imageio `_. All of the dependencies are included in ``requirements.txt`` file inside the ``cam-control`` folder (it can also be extracted by running ``python -m pip freeze`` in the local python command line). In addition, the GitHub-hosted version requires `pylablib `_ v1.3.1 (not included in ``requirements.txt``). +It is also possible to run cam-control in your own Python environment. All of the required code is contained in ``cam-control`` folder and can be obtained either on `GitHub `__ or directly from the folder. To run it, you also need to install the necessary dependencies: `NumPy `_, `SciPy `_, `pandas `_, `Numba `_, `RPyC `_, `PyQt5 `_ (or `PySide2 `_ with `shiboken2 `_), `pyqtgraph `_, and `imageio `_. All of the dependencies are included in ``requirements.txt`` file inside the ``cam-control`` folder (it can also be extracted by running ``python -m pip freeze`` in the local python command line). In addition, the GitHub-hosted version requires `pylablib `_ v1.3.2 (not included in ``requirements.txt``). .. _expanding_filter: diff --git a/utils/__init__.py b/utils/__init__.py index 7e9545a..a4dc1e0 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1,4 +1,4 @@ -version="2.1.1" +version="2.1.2" import re def compare_version(v):