Skip to content

Commit

Permalink
Merge pull request #36 from OliverKillane/dependabot/pip/python-packa…
Browse files Browse the repository at this point in the history
…ges-27b1a9837f

update deps(deps): bump the python-packages group with 5 updates
  • Loading branch information
OliverKillane authored Apr 17, 2024
2 parents fc7915b + 2323d77 commit ae0928e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "xmlable"
version = "2.0.1"
version = "2.0.2"
authors = [
{ name = "Oliver Killane", email = "[email protected]" },
]
Expand All @@ -19,8 +19,8 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"lxml==4.9.3",
"lxml-stubs==0.4.0",
"lxml==5.2.1",
"lxml-stubs==0.5.1",
"termcolor==2.4.0",
"pyhumps==3.8.0",
]
Expand All @@ -31,7 +31,7 @@ dependencies = [
"Source" = "https://github.com/OliverKillane/xmlable"

[project.optional-dependencies]
dev = ["black==23.11.0", "mypy==1.7.1", "pytest==7.4.3"]
dev = ["black==24.4.0", "mypy==1.9.0", "pytest==8.1.1"]

[tool.pytest.ini_options]
minversion = "6.0"
Expand Down
1 change: 1 addition & 0 deletions src/xmlable/_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Clear messages
- Trace for parsing
"""

from dataclasses import dataclass
from typing import Any, Iterable
from termcolor import colored
Expand Down
1 change: 1 addition & 0 deletions src/xmlable/_xmlify.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
a filled xml
- Create a parser for parsing the xml
"""

from humps import pascalize
from dataclasses import fields, is_dataclass
from typing import Any, dataclass_transform
Expand Down
1 change: 1 addition & 0 deletions src/xmlable/_xobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Produced by @xmlify decorated classes, and by gen_xobject
- Associated xsd, xml and parsing
"""

from humps import pascalize
from dataclasses import dataclass
from types import NoneType, UnionType
Expand Down

0 comments on commit ae0928e

Please sign in to comment.