Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## [Unreleased]
### Changed
- Certify dependency version update, by @othererik

## [5.7.4]
### Fixed
- Microsecond logging for nested steps, by @HardNorth

Expand Down
2 changes: 2 additions & 0 deletions reportportal_client/_internal/static/defines.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,5 @@ class Priority(IntEnum):
DEFAULT_PRIORITY = Priority.PRIORITY_MEDIUM
LOW_PRIORITY = Priority.PRIORITY_LOW
NOT_SET = _PresenceSentinel()

MICROSECONDS_MIN_VERSION = "5.13.2"
5 changes: 3 additions & 2 deletions reportportal_client/aio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@

# noinspection PyProtectedMember
from reportportal_client._internal.static.abstract import AbstractBaseClass, abstractmethod
from reportportal_client._internal.static.defines import DEFAULT_LOG_LEVEL

# noinspection PyProtectedMember
from reportportal_client._internal.static.defines import DEFAULT_LOG_LEVEL, MICROSECONDS_MIN_VERSION

# noinspection PyProtectedMember
from reportportal_client.aio.tasks import EmptyTask, Task
Expand Down Expand Up @@ -96,7 +98,6 @@

DEFAULT_TASK_TIMEOUT: float = 60.0
DEFAULT_SHUTDOWN_TIMEOUT: float = 120.0
MICROSECONDS_MIN_VERSION = "5.13.2"


class Client:
Expand Down
5 changes: 3 additions & 2 deletions reportportal_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@

# noinspection PyProtectedMember
from reportportal_client._internal.static.abstract import AbstractBaseClass

# noinspection PyProtectedMember
from reportportal_client._internal.static.defines import MICROSECONDS_MIN_VERSION
from reportportal_client.core.rp_issues import Issue
from reportportal_client.core.rp_requests import (
ErrorPrintingHttpRequest,
Expand Down Expand Up @@ -76,8 +79,6 @@
logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())

MICROSECONDS_MIN_VERSION = "5.13.2"


class OutputType(Enum):
"""Enum of possible print output types."""
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
typing-extensions>=4.13.2, <=4.15.0
requests>=2.32.5, <=2.33.1
aiohttp>=3.13.4, <=3.13.5
certifi==2026.2.25
certifi>=2026.2.25, <=2026.04.22
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import find_packages, setup

__version__ = "5.7.4"
__version__ = "5.7.5"

TYPE_STUBS = ["*.pyi"]

Expand Down
Loading