Skip to content

Commit

Permalink
Updated pydantic version range to support higher version (#48)
Browse files Browse the repository at this point in the history
* Updated pydantic version range to support higher version

* Updated comments

* Bumped version to indicate a breaking change
  • Loading branch information
honeytung authored Jul 23, 2024
1 parent 5009d6b commit 89a00b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "framegrab"
version = "0.5.5"
version = "0.6.0"
description = "Easily grab frames from cameras or streams"
authors = ["Groundlight <[email protected]>"]
license = "MIT"
Expand All @@ -17,7 +17,7 @@ click = "^8.1.6"
ascii-magic = "^2.3.0"
wsdiscovery = "^2.0.0"
onvif-zeep = "^0.2.12"
pydantic = "2.5.3"
pydantic = "^2.5.3"

[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
Expand Down
2 changes: 1 addition & 1 deletion src/framegrab/rtsp_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
logger = logging.getLogger(__name__)


# Default credentials to try when connecting to RTSP cameras, used in discover_camera_ips() when try_default_logins=True
# Default credentials to try when connecting to RTSP cameras, used in discover_onvif_devices() and setting auto_discover_mode.
DEFAULT_CREDENTIALS = [
("admin", "admin"),
("", ""),
Expand Down

0 comments on commit 89a00b0

Please sign in to comment.