Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Feb 10, 2025
1 parent cc33e20 commit be57ebc
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 101 deletions.
2 changes: 1 addition & 1 deletion pw
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import sys
from pathlib import Path
from venv import EnvBuilder

VERSION = "3.1.3"
VERSION = "3.1.5"

PYPROJECTX_INSTALL_DIR_ENV_VAR = "PYPROJECTX_INSTALL_DIR"
PYPROJECTX_PACKAGE_ENV_VAR = "PYPROJECTX_PACKAGE"
Expand Down
2 changes: 1 addition & 1 deletion pw.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[main]
requirements = ["uv==0.5.5"]
requirements = ["uv==0.5.29"]
hash = "45210da832f9626829457a65e9e7c4d0"
18 changes: 6 additions & 12 deletions pytest_robotframework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,12 +490,9 @@ def keyword( # pylint:disable=missing-param-doc
if wrap_context_manager:
return _WrappedContextManagerKeywordDecorator(name=name, tags=tags, module=module)
return _NonWrappedContextManagerKeywordDecorator(name=name, tags=tags, module=module)
return keyword( # pyright:ignore[reportCallIssue,reportUnknownVariableType]
name=name,
tags=tags,
module=module,
wrap_context_manager=wrap_context_manager, # pyright:ignore[reportArgumentType]
)(fn)
return keyword( # pyright:ignore[reportReturnType]
name=name, tags=tags, module=module, wrap_context_manager=wrap_context_manager
)(fn) # pyright:ignore[reportArgumentType]


def as_keyword(
Expand Down Expand Up @@ -558,12 +555,9 @@ def keywordify(
setattr(
obj,
method_name,
keyword( # pyright:ignore[reportCallIssue]
name=name,
tags=tags,
module=module,
wrap_context_manager=wrap_context_manager, # pyright:ignore[reportArgumentType]
)(getattr(obj, method_name)),
keyword(name=name, tags=tags, module=module, wrap_context_manager=wrap_context_manager)(
getattr(obj, method_name) # pyright:ignore[reportAny]
),
)


Expand Down
Loading

0 comments on commit be57ebc

Please sign in to comment.