satori-python-client 0.17.2__tar.gz → 0.17.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: satori-python-client
3
- Version: 0.17.2
3
+ Version: 0.17.3
4
4
  Summary: Satori Protocol SDK for python, specify client part
5
5
  Home-page: https://github.com/RF-Tar-Railt/satori-python
6
6
  Author-Email: RF-Tar-Railt <rf_tar_railt@qq.com>
@@ -77,6 +77,7 @@ pip install satori-python-server
77
77
  | Satori | `pip install satori-python-adapter-satori` | satori.adapters.satori |
78
78
  | OneBot V11 | `pip install satori-python-adapter-onebot11` | satori.adapters.onebot11.forward, satori.adapters.onebot11.reverse |
79
79
  | Console | `pip install satori-python-adapter-console` | satori.adapters.console |
80
+ | Milky | `pip install satori-python-adapter-milky` | satori.adapters.milky.main, satori.adapters.milky.webhook |
80
81
 
81
82
  ### 社区适配器
82
83
 
@@ -52,6 +52,7 @@ pip install satori-python-server
52
52
  | Satori | `pip install satori-python-adapter-satori` | satori.adapters.satori |
53
53
  | OneBot V11 | `pip install satori-python-adapter-onebot11` | satori.adapters.onebot11.forward, satori.adapters.onebot11.reverse |
54
54
  | Console | `pip install satori-python-adapter-console` | satori.adapters.console |
55
+ | Milky | `pip install satori-python-adapter-milky` | satori.adapters.milky.main, satori.adapters.milky.webhook |
55
56
 
56
57
  ### 社区适配器
57
58
 
@@ -24,7 +24,7 @@ classifiers = [
24
24
  "Programming Language :: Python :: 3.12",
25
25
  "Operating System :: OS Independent",
26
26
  ]
27
- version = "0.17.2"
27
+ version = "0.17.3"
28
28
 
29
29
  [project.license]
30
30
  text = "MIT"
@@ -66,7 +66,7 @@ excludes = [
66
66
  composite = [
67
67
  "isort ./src/ ./example/",
68
68
  "black ./src/ ./example/",
69
- "ruff check ./src/ ./example/",
69
+ "ruff check",
70
70
  ]
71
71
 
72
72
  [tool.pdm.version]
@@ -90,7 +90,9 @@ extra_standard_library = [
90
90
  line-length = 120
91
91
  target-version = "py310"
92
92
  exclude = [
93
- "exam.py",
93
+ "exam_qps.py",
94
+ "exam1.py",
95
+ "exam2.py",
94
96
  ]
95
97
 
96
98
  [tool.ruff.lint]
@@ -108,7 +110,7 @@ ignore = [
108
110
  "F403",
109
111
  "F405",
110
112
  "C901",
111
- "UP038",
113
+ "T201",
112
114
  ]
113
115
 
114
116
  [tool.pyright]