File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
33## [ Unreleased]
4+ ### Changed
5+ - Certify dependency version update, by @othererik
6+
7+ ## [ 5.7.4]
48### Fixed
59- Microsecond logging for nested steps, by @HardNorth
610
Original file line number Diff line number Diff line change @@ -81,3 +81,5 @@ class Priority(IntEnum):
8181DEFAULT_PRIORITY = Priority .PRIORITY_MEDIUM
8282LOW_PRIORITY = Priority .PRIORITY_LOW
8383NOT_SET = _PresenceSentinel ()
84+
85+ MICROSECONDS_MIN_VERSION = "5.13.2"
Original file line number Diff line number Diff line change 5555
5656# noinspection PyProtectedMember
5757from reportportal_client ._internal .static .abstract import AbstractBaseClass , abstractmethod
58- from reportportal_client ._internal .static .defines import DEFAULT_LOG_LEVEL
58+
59+ # noinspection PyProtectedMember
60+ from reportportal_client ._internal .static .defines import DEFAULT_LOG_LEVEL , MICROSECONDS_MIN_VERSION
5961
6062# noinspection PyProtectedMember
6163from reportportal_client .aio .tasks import EmptyTask , Task
9698
9799DEFAULT_TASK_TIMEOUT : float = 60.0
98100DEFAULT_SHUTDOWN_TIMEOUT : float = 120.0
99- MICROSECONDS_MIN_VERSION = "5.13.2"
100101
101102
102103class Client :
Original file line number Diff line number Diff line change 4444
4545# noinspection PyProtectedMember
4646from reportportal_client ._internal .static .abstract import AbstractBaseClass
47+
48+ # noinspection PyProtectedMember
49+ from reportportal_client ._internal .static .defines import MICROSECONDS_MIN_VERSION
4750from reportportal_client .core .rp_issues import Issue
4851from reportportal_client .core .rp_requests import (
4952 ErrorPrintingHttpRequest ,
7679logger = logging .getLogger (__name__ )
7780logger .addHandler (logging .NullHandler ())
7881
79- MICROSECONDS_MIN_VERSION = "5.13.2"
80-
8182
8283class OutputType (Enum ):
8384 """Enum of possible print output types."""
Original file line number Diff line number Diff line change 11typing-extensions >= 4.13.2 , <= 4.15.0
22requests >= 2.32.5 , <= 2.33.1
33aiohttp >= 3.13.4 , <= 3.13.5
4- certifi == 2026.2.25
4+ certifi >= 2026.2.25 , <= 2026.04.22
Original file line number Diff line number Diff line change 44
55from setuptools import find_packages , setup
66
7- __version__ = "5.7.4 "
7+ __version__ = "5.7.5 "
88
99TYPE_STUBS = ["*.pyi" ]
1010
You can’t perform that action at this time.
0 commit comments