Skip to content

Commit a863eed

Browse files
authored
fix browser use version 1 to 0.6 (#178)
1 parent 3f58339 commit a863eed

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[project]
88
name = "lmnr"
9-
version = "0.7.5"
9+
version = "0.7.6"
1010
description = "Python SDK for Laminar"
1111
authors = [
1212
{ name = "lmnr.ai", email = "[email protected]" }

src/lmnr/opentelemetry_lib/tracing/_instrument_initializers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def init_instrumentor(
6565

6666
return BrowserUseLegacyInstrumentor()
6767

68-
if version and parse(version) >= parse("1.0.0rc1"):
68+
if version and parse(version) >= parse("0.6.0rc1"):
6969
from lmnr.sdk.browser.browser_use_cdp_otel import BrowserUseInstrumentor
7070

7171
return BrowserUseInstrumentor(async_client)

src/lmnr/sdk/browser/browser_use_cdp_otel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
from wrapt import wrap_function_wrapper
1515
import uuid
1616

17-
# Stable versions, e.g. 1.0.0, satisfy this condition too
18-
_instruments = ("browser-use >= 1.0.0rc1",)
17+
# Stable versions, e.g. 0.6.0, satisfy this condition too
18+
_instruments = ("browser-use >= 0.6.0rc1",)
1919

2020
WRAPPED_METHODS = [
2121
{

src/lmnr/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from packaging import version
44

55

6-
__version__ = "0.7.5"
6+
__version__ = "0.7.6"
77
PYTHON_VERSION = f"{sys.version_info.major}.{sys.version_info.minor}"
88

99

0 commit comments

Comments
 (0)