ygo 1.1.3__tar.gz → 1.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ygo might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ygo
3
- Version: 1.1.3
3
+ Version: 1.1.4
4
4
  Summary: 一个轻量级 Python 工具包,支持 并发执行(带进度条)、延迟调用、链式绑定参数、函数信息获取、模块/函数动态加载。并结合 ylog 提供日志记录能力
5
5
  Project-URL: homepage, https://github.com/link-yundi/ygo
6
6
  Project-URL: repository, https://github.com/link-yundi/ygo
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ygo"
7
- version = "v1.1.3"
7
+ version = "v1.1.4"
8
8
  description = "一个轻量级 Python 工具包,支持 并发执行(带进度条)、延迟调用、链式绑定参数、函数信息获取、模块/函数动态加载。并结合 ylog 提供日志记录能力"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -20,7 +20,7 @@ from .utils import (
20
20
  fn_from_str,
21
21
  )
22
22
 
23
- __version__ = "v1.1.3"
23
+ __version__ = "v1.1.4"
24
24
 
25
25
  __all__ = [
26
26
  "FailTaskError",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ygo
3
- Version: 1.1.3
3
+ Version: 1.1.4
4
4
  Summary: 一个轻量级 Python 工具包,支持 并发执行(带进度条)、延迟调用、链式绑定参数、函数信息获取、模块/函数动态加载。并结合 ylog 提供日志记录能力
5
5
  Project-URL: homepage, https://github.com/link-yundi/ygo
6
6
  Project-URL: repository, https://github.com/link-yundi/ygo
@@ -9,7 +9,7 @@ Created on 2025/5/14 15:37
9
9
 
10
10
  from .core import trace, debug, info, warning, error, critical, update_config, get_logger
11
11
 
12
- __version__ = "v1.1.3"
12
+ __version__ = "v1.1.4"
13
13
 
14
14
  __all__ = [
15
15
  "trace",
@@ -80,7 +80,7 @@ class _Logger:
80
80
 
81
81
  logger.add(
82
82
  sys.stderr,
83
- level="DEBUG" if self.debug_mode else "INFO",
83
+ level="TRACE",
84
84
  format=console_format,
85
85
  colorize=True,
86
86
  backtrace=self.debug_mode,
@@ -131,7 +131,7 @@ class _Logger:
131
131
  # 错误级别以下的日志
132
132
  logger.add(
133
133
  str(info_log_file),
134
- level="INFO",
134
+ level="TRACE",
135
135
  format=common_format,
136
136
  rotation=levels["INFO"]["rotation"],
137
137
  retention=levels["INFO"]["retention"],
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes