html-table-parse 0.2.1__tar.gz → 0.2.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,12 +1,12 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: html-table-parse
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Parse HTML table as Python list or dict
5
5
  Author: 5j9
6
6
  Author-email: 5j9 <5j9@users.noreply.github.com>
7
7
  License: GPL-3.0
8
8
  Requires-Dist: lxml>=6.1.1
9
- Requires-Python: >=3.14
9
+ Requires-Python: >=3.10
10
10
  Project-URL: Homepage, https://github.com/5j9/html-table-parse
11
11
  Description-Content-Type: text/markdown
12
12
 
@@ -1,4 +1,4 @@
1
- __version__ = '0.2.1'
1
+ __version__ = '0.2.2'
2
2
 
3
3
  from collections import defaultdict as _defaultdict
4
4
  from functools import partial as _partial
@@ -4,11 +4,11 @@ build-backend = 'uv_build'
4
4
 
5
5
  [project]
6
6
  name = 'html-table-parse'
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  authors = [{ name = '5j9', email = '5j9@users.noreply.github.com' }]
9
9
  description = 'Parse HTML table as Python list or dict'
10
10
  readme = 'README.md'
11
- requires-python = '>=3.14'
11
+ requires-python = '>=3.10'
12
12
  dependencies = [
13
13
  "lxml>=6.1.1",
14
14
  ]