pyblu 2.0.0__tar.gz → 2.0.2__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,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: pyblu
3
- Version: 2.0.0
3
+ Version: 2.0.2
4
4
  Summary:
5
- Home-page: https://github.com/LouisChrist/pyblu
6
5
  License: MIT
7
6
  Author: Louis Christ
8
7
  Author-email: mail@louischrist.de
@@ -11,8 +10,9 @@ Classifier: License :: OSI Approved :: MIT License
11
10
  Classifier: Programming Language :: Python :: 3
12
11
  Classifier: Programming Language :: Python :: 3.11
13
12
  Classifier: Programming Language :: Python :: 3.12
14
- Requires-Dist: aiohttp (>=3.10.8,<4.0.0)
15
- Requires-Dist: lxml (>=5.0.0,<6.0.0)
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Requires-Dist: aiohttp (>=3.11.11)
15
+ Requires-Dist: lxml (>=5.0.0)
16
16
  Project-URL: Repository, https://github.com/LouisChrist/pyblu
17
17
  Description-Content-Type: text/markdown
18
18
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pyblu"
3
- version = "2.0.0"
3
+ version = "2.0.2"
4
4
  description = ""
5
5
  authors = ["Louis Christ <mail@louischrist.de>"]
6
6
  repository = "https://github.com/LouisChrist/pyblu"
@@ -12,21 +12,21 @@ packages = [
12
12
 
13
13
  [tool.poetry.dependencies]
14
14
  python = "^3.11"
15
- aiohttp = "^3.10.8"
16
- lxml = "^5.0.0"
15
+ aiohttp = ">=3.11.11"
16
+ lxml = ">=5.0.0"
17
17
 
18
18
  [tool.poetry.group.dev.dependencies]
19
19
  pylint = "^3.3.1"
20
- black = "^24.4.2"
20
+ black = "^25.1.0"
21
21
  pytest = "^8.3.3"
22
- aioresponses = "^0.7.6"
22
+ aioresponses = "^0.7.8"
23
23
  pytest-asyncio = "^0.24.0"
24
- sphinx = "^8.0.0"
24
+ sphinx = "^8.1.3"
25
25
  invoke = "^2.2.0"
26
26
  semver = "^3.0.2"
27
- mypy = "^1.11.1"
28
- pygithub = "^2.3.0"
29
- types-lxml = "^2024.9.16"
27
+ mypy = "^1.13.0"
28
+ pygithub = "^2.5.0"
29
+ types-lxml = "^2024.12.13"
30
30
 
31
31
  [build-system]
32
32
  requires = ["poetry-core"]
@@ -155,7 +155,7 @@ class Preset:
155
155
 
156
156
  @dataclass
157
157
  class Input:
158
- id: str
158
+ id: str | None
159
159
  """Unique id of the input"""
160
160
  text: str
161
161
  """User friendly name of the input"""
@@ -225,7 +225,7 @@ def parse_inputs(response: bytes) -> list[Input]:
225
225
 
226
226
  inputs = [
227
227
  Input(
228
- id=x.attrib["id"],
228
+ id=x.attrib.get("id"),
229
229
  text=x.attrib["text"],
230
230
  image=x.attrib["image"],
231
231
  url=unquote(x.attrib["URL"]),
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes