Skip to content

Commit

Permalink
Merge pull request #143 from LaboratoireMecaniqueLille/release/2.0.7
Browse files Browse the repository at this point in the history
Release version 2.0.7
  • Loading branch information
WeisLeDocto authored Nov 26, 2024
2 parents fa3019e + bfe2d20 commit 83306c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from time import gmtime, strftime
from re import match

__version__ = '2.0.6'
__version__ = '2.0.7'

# Project information
# =============================================================================
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "crappy"
dynamic = ["readme"]
version = "2.0.6"
version = "2.0.7"
description = "Command and Real-time Acquisition in Parallelized Python"
license = {file = "LICENSE"}
keywords = ["control", "command", "acquisition", "multiprocessing"]
Expand Down
2 changes: 1 addition & 1 deletion src/crappy/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# coding: utf-8

__version__ = '2.0.6'
__version__ = '2.0.7'
2 changes: 1 addition & 1 deletion src/crappy/camera/gstreamer_camera_v4l2.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def _get_pipeline(self, img_format: Optional[str] = None) -> str:
try:
format_name, img_size, fps = findall(r"(\w+)\s(\w+)\s\((\d+.\d+) fps\)",
img_format)[0]
except ValueError:
except (ValueError, IndexError):
format_name, img_size, fps = img_format, None, None

# Default color is BGR in most cases
Expand Down

0 comments on commit 83306c0

Please sign in to comment.