Skip to content

Commit d6573fd

Browse files
authored
Merge pull request #272 from reportportal/develop
Release
2 parents 81c9a09 + d194732 commit d6573fd

6 files changed

Lines changed: 14 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
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

reportportal_client/_internal/static/defines.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,5 @@ class Priority(IntEnum):
8181
DEFAULT_PRIORITY = Priority.PRIORITY_MEDIUM
8282
LOW_PRIORITY = Priority.PRIORITY_LOW
8383
NOT_SET = _PresenceSentinel()
84+
85+
MICROSECONDS_MIN_VERSION = "5.13.2"

reportportal_client/aio/client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555

5656
# noinspection PyProtectedMember
5757
from 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
6163
from reportportal_client.aio.tasks import EmptyTask, Task
@@ -96,7 +98,6 @@
9698

9799
DEFAULT_TASK_TIMEOUT: float = 60.0
98100
DEFAULT_SHUTDOWN_TIMEOUT: float = 120.0
99-
MICROSECONDS_MIN_VERSION = "5.13.2"
100101

101102

102103
class Client:

reportportal_client/client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@
4444

4545
# noinspection PyProtectedMember
4646
from reportportal_client._internal.static.abstract import AbstractBaseClass
47+
48+
# noinspection PyProtectedMember
49+
from reportportal_client._internal.static.defines import MICROSECONDS_MIN_VERSION
4750
from reportportal_client.core.rp_issues import Issue
4851
from reportportal_client.core.rp_requests import (
4952
ErrorPrintingHttpRequest,
@@ -76,8 +79,6 @@
7679
logger = logging.getLogger(__name__)
7780
logger.addHandler(logging.NullHandler())
7881

79-
MICROSECONDS_MIN_VERSION = "5.13.2"
80-
8182

8283
class OutputType(Enum):
8384
"""Enum of possible print output types."""

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
typing-extensions>=4.13.2, <=4.15.0
22
requests>=2.32.5, <=2.33.1
33
aiohttp>=3.13.4, <=3.13.5
4-
certifi==2026.2.25
4+
certifi>=2026.2.25, <=2026.04.22

setup.py

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

55
from setuptools import find_packages, setup
66

7-
__version__ = "5.7.4"
7+
__version__ = "5.7.5"
88

99
TYPE_STUBS = ["*.pyi"]
1010

0 commit comments

Comments
 (0)