json2xml 5.0.3__tar.gz → 5.0.4__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.
- {json2xml-5.0.3 → json2xml-5.0.4}/HISTORY.rst +5 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/PKG-INFO +7 -1
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml/__init__.py +2 -1
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml.egg-info/PKG-INFO +7 -1
- {json2xml-5.0.3 → json2xml-5.0.4}/setup.py +1 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/AUTHORS.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/CONTRIBUTING.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/LICENSE +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/MANIFEST.in +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/README.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/Makefile +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/authors.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/conf.py +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/contributing.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/history.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/index.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/installation.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/json2xml.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/make.bat +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/modules.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/readme.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/docs/usage.rst +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml/dicttoxml.py +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml/json2xml.py +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml/utils.py +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml.egg-info/SOURCES.txt +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml.egg-info/dependency_links.txt +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml.egg-info/not-zip-safe +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml.egg-info/requires.txt +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/json2xml.egg-info/top_level.txt +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/pyproject.toml +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/requirements.in +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/setup.cfg +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/tests/__init__.py +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/tests/test_dict2xml.py +0 -0
- {json2xml-5.0.3 → json2xml-5.0.4}/tests/test_json2xml.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: json2xml
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.4
|
|
4
4
|
Summary: Simple Python Library to convert JSON to XML
|
|
5
5
|
Home-page: https://github.com/vinitkumar/json2xml
|
|
6
6
|
Author: Vinit Kumar
|
|
@@ -18,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
18
18
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
19
19
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Requires-Python: >=3.10
|
|
21
22
|
Description-Content-Type: text/x-rst
|
|
22
23
|
License-File: LICENSE
|
|
23
24
|
License-File: AUTHORS.rst
|
|
@@ -232,6 +233,11 @@ Help and Support to maintain this project
|
|
|
232
233
|
History
|
|
233
234
|
=======
|
|
234
235
|
|
|
236
|
+
5.0.4 / 2024-08-08
|
|
237
|
+
==================
|
|
238
|
+
|
|
239
|
+
* feat: enforce the version requirements in the correct way
|
|
240
|
+
|
|
235
241
|
5.0.3 / 2024-08-08
|
|
236
242
|
==================
|
|
237
243
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: json2xml
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.4
|
|
4
4
|
Summary: Simple Python Library to convert JSON to XML
|
|
5
5
|
Home-page: https://github.com/vinitkumar/json2xml
|
|
6
6
|
Author: Vinit Kumar
|
|
@@ -18,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
18
18
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
19
19
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Requires-Python: >=3.10
|
|
21
22
|
Description-Content-Type: text/x-rst
|
|
22
23
|
License-File: LICENSE
|
|
23
24
|
License-File: AUTHORS.rst
|
|
@@ -232,6 +233,11 @@ Help and Support to maintain this project
|
|
|
232
233
|
History
|
|
233
234
|
=======
|
|
234
235
|
|
|
236
|
+
5.0.4 / 2024-08-08
|
|
237
|
+
==================
|
|
238
|
+
|
|
239
|
+
* feat: enforce the version requirements in the correct way
|
|
240
|
+
|
|
235
241
|
5.0.3 / 2024-08-08
|
|
236
242
|
==================
|
|
237
243
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|