excel-orm 0.1.6__tar.gz → 0.1.7__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.4
2
2
  Name: excel-orm
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: A lightweight Excel ORM for generating templates and parsing typed row models.
5
5
  Project-URL: Homepage, https://github.com/acdelrusso/excel-orm
6
6
  Project-URL: Repository, https://github.com/acdelrusso/excel-orm
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "excel-orm"
3
- version = "0.1.6"
3
+ version = "0.1.7"
4
4
  description = "A lightweight Excel ORM for generating templates and parsing typed row models."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -19,3 +19,8 @@ class RowBase:
19
19
 
20
20
  for k, v in kwargs.items():
21
21
  setattr(self, k, v)
22
+
23
+ self.validate()
24
+
25
+ def validate(self) -> None:
26
+ pass
@@ -210,7 +210,7 @@ wheels = [
210
210
 
211
211
  [[package]]
212
212
  name = "excel-orm"
213
- version = "0.1.6"
213
+ version = "0.1.7"
214
214
  source = { editable = "." }
215
215
  dependencies = [
216
216
  { name = "openpyxl" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes