-
-
Notifications
You must be signed in to change notification settings - Fork 32
feat: add xPath support #259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
109007e
daeb4f5
e8dd2d9
aff962b
d6cb6a0
d8125cf
2969218
366e0cf
b3596f5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,15 @@ | ||
| furo==2025.7.19 | ||
| furo==2025.9.25 | ||
| sphinx==8.2.3 | ||
| sphinx-autobuild==2024.10.3 | ||
| sphinx-autobuild==2025.8.25 | ||
|
|
||
| # if using typehints | ||
| sphinx-autodoc-typehints==3.2.0 | ||
| sphinx-autodoc-typehints==3.5.2 | ||
|
|
||
| mock==5.2.0 | ||
| autodoc==0.5.0 | ||
|
|
||
| defusedxml==0.7.1 | ||
| tornado==6.5.2 | ||
| jinja2>=3.1.6 | ||
| idna==3.10 | ||
| starlette>=0.47.2 | ||
| jinja2==3.1.6 | ||
| idna==3.11 | ||
| starlette==0.50.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,5 +2,5 @@ | |
|
|
||
| __author__ = """Vinit Kumar""" | ||
| __email__ = "mail@vinitkumar.me" | ||
| __version__ = "5.2.1" | ||
| __version__ = "5.3.0" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
|
||
| [project] | ||
| name = "json2xml" | ||
| version = "5.2.1" # Replace with the dynamic version if needed | ||
| version = "5.3.1" # Replace with the dynamic version if needed | ||
| description = "Simple Python Library to convert JSON to XML" | ||
| readme = "README.rst" | ||
| requires-python = ">=3.10" | ||
|
|
@@ -45,7 +45,7 @@ include = ["json2xml"] | |
|
|
||
| [project.optional-dependencies] | ||
| test = [ | ||
| "pytest==7.0.1", | ||
| "pytest>=8.4.1", | ||
|
||
| ] | ||
|
|
||
| [tool.pytest.ini_options] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version mismatch: The version is set to "5.3.1" in pyproject.toml but "5.3.0" in json2xml/init.py. These should be consistent. Typically, init.py should match pyproject.toml as the single source of truth.