diff --git a/CHANGELOG.md b/CHANGELOG.md index a3230d3..f6c15e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## [Unreleased] +### Changed +- Certify dependency version update, by @othererik + +## [5.7.4] ### Fixed - Microsecond logging for nested steps, by @HardNorth diff --git a/reportportal_client/_internal/static/defines.py b/reportportal_client/_internal/static/defines.py index d231efe..9f29902 100644 --- a/reportportal_client/_internal/static/defines.py +++ b/reportportal_client/_internal/static/defines.py @@ -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" diff --git a/reportportal_client/aio/client.py b/reportportal_client/aio/client.py index f76c7bf..d3ebe7a 100644 --- a/reportportal_client/aio/client.py +++ b/reportportal_client/aio/client.py @@ -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 @@ -96,7 +98,6 @@ DEFAULT_TASK_TIMEOUT: float = 60.0 DEFAULT_SHUTDOWN_TIMEOUT: float = 120.0 -MICROSECONDS_MIN_VERSION = "5.13.2" class Client: diff --git a/reportportal_client/client.py b/reportportal_client/client.py index 9fc5b92..109f0d3 100644 --- a/reportportal_client/client.py +++ b/reportportal_client/client.py @@ -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, @@ -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.""" diff --git a/requirements.txt b/requirements.txt index f1287ed..7e58635 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index a53b151..808856e 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import find_packages, setup -__version__ = "5.7.4" +__version__ = "5.7.5" TYPE_STUBS = ["*.pyi"]