yggdrasil-python-rapidjson 1.21.0.0__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.
- yggdrasil_python_rapidjson-1.21.0.0/.bumpversion.toml +32 -0
- yggdrasil_python_rapidjson-1.21.0.0/.dir-locals.el +4 -0
- yggdrasil_python_rapidjson-1.21.0.0/.github/dependabot.yml +6 -0
- yggdrasil_python_rapidjson-1.21.0.0/.github/workflows/conda_recipe.yml +73 -0
- yggdrasil_python_rapidjson-1.21.0.0/.github/workflows/main.yml +196 -0
- yggdrasil_python_rapidjson-1.21.0.0/.gitignore +73 -0
- yggdrasil_python_rapidjson-1.21.0.0/.gitmodules +4 -0
- yggdrasil_python_rapidjson-1.21.0.0/.readthedocs.yaml +28 -0
- yggdrasil_python_rapidjson-1.21.0.0/CHANGES.rst +692 -0
- yggdrasil_python_rapidjson-1.21.0.0/CMakeLists.txt +160 -0
- yggdrasil_python_rapidjson-1.21.0.0/LICENSE +24 -0
- yggdrasil_python_rapidjson-1.21.0.0/MANIFEST.in +14 -0
- yggdrasil_python_rapidjson-1.21.0.0/Makefile +97 -0
- yggdrasil_python_rapidjson-1.21.0.0/Makefile.release +70 -0
- yggdrasil_python_rapidjson-1.21.0.0/Makefile.virtualenv +48 -0
- yggdrasil_python_rapidjson-1.21.0.0/PKG-INFO +143 -0
- yggdrasil_python_rapidjson-1.21.0.0/README.rst +94 -0
- yggdrasil_python_rapidjson-1.21.0.0/TODO.txt +17 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/conftest.py +195 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/json/apache.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/json/canada.json +56532 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/json/ctm.json +48951 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/json/github.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/json/instruments.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/json/mesh.json +3602 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/json/truenull.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/json/tweet.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/json/twitter.json +15195 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/tablize.py +216 -0
- yggdrasil_python_rapidjson-1.21.0.0/benchmarks/test_benchmark.py +176 -0
- yggdrasil_python_rapidjson-1.21.0.0/cmake/SearchTools.cmake +539 -0
- yggdrasil_python_rapidjson-1.21.0.0/cmake/ygg_options.cmake +209 -0
- yggdrasil_python_rapidjson-1.21.0.0/conda.recipe/conda_build_config.yaml +7 -0
- yggdrasil_python_rapidjson-1.21.0.0/conda.recipe/recipe.yaml +79 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/Makefile +20 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/api.rst +253 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/benchmarks-tables.rst +123 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/benchmarks.rst +73 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/changes.rst +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/conf.py +168 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/decoder.rst +207 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/dump.rst +76 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/dumps.rst +674 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/encoder.rst +219 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/index.rst +37 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/load.rst +56 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/loads.rst +299 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/quickstart.rst +264 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/rawjson.rst +45 -0
- yggdrasil_python_rapidjson-1.21.0.0/docs/validator.rst +77 -0
- yggdrasil_python_rapidjson-1.21.0.0/geometry.cpp +3925 -0
- yggdrasil_python_rapidjson-1.21.0.0/pyproject.toml +74 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/.gitattributes +22 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/.github/workflows/conda_recipe.yml +131 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/.github/workflows/test-suite.yml +177 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/.gitignore +30 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/.gitmodules +3 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/.travis.yml +167 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/CHANGELOG.md +193 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/CMakeLists.txt +437 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/CMakeModules/CMakeLists.txt.standalone.in +6 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/CMakeModules/CodeCoverage.cmake +708 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/CMakeModules/FindGTestSrc.cmake +45 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/CMakeModules/gtest.patch +70 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/CTestConfig.cmake +6 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/YggdrasilRapidJSON.pc.in +7 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/YggdrasilRapidJSONConfig.cmake.in +35 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/appveyor.yml +115 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/data/abcde.txt +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/data/glossary.json +22 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/data/menu.json +27 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/data/readme.txt +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/data/sample.json +3315 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/data/webapp.json +88 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/data/widget.json +26 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf16be.json +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf16bebom.json +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf16le.json +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf16lebom.json +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf32be.json +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf32bebom.json +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf32le.json +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf32lebom.json +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf8.json +7 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/encodings/utf8bom.json +7 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail1.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail10.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail11.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail12.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail13.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail14.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail15.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail16.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail17.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail18.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail19.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail2.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail20.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail21.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail22.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail23.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail24.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail25.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail26.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail27.json +2 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail28.json +2 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail29.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail3.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail30.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail31.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail32.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail33.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail4.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail5.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail6.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail7.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail8.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/fail9.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/pass1.json +58 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/pass2.json +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/pass3.json +6 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/jsonchecker/readme.txt +3 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/types/alotofkeys.json +502 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/types/booleans.json +102 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/types/floats.json +102 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/types/guids.json +102 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/types/integers.json +102 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/types/mixed.json +592 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/types/nulls.json +102 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/types/paragraphs.json +102 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/types/readme.txt +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/unittestschema/address.json +138 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/unittestschema/allOf_address.json +7 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/unittestschema/anyOf_address.json +7 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/unittestschema/idandref.json +69 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/bin/unittestschema/oneOf_address.json +7 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/conda.recipe/build.bat +21 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/conda.recipe/build.sh +22 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/conda.recipe/recipe.yaml +59 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/contrib/natvis/LICENSE +45 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/contrib/natvis/README.md +7 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/contrib/natvis/rapidjson.natvis +38 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/create_metaschema.py +554 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/CMakeLists.txt +27 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/Doxyfile.in +2369 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/Doxyfile.zh-cn.in +2369 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/architecture.dot +50 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/architecture.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/insituparsing.dot +65 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/insituparsing.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/iterative-parser-states-diagram.dot +62 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/iterative-parser-states-diagram.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/makefile +8 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/move1.dot +47 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/move1.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/move2.dot +62 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/move2.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/move3.dot +60 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/move3.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/normalparsing.dot +56 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/normalparsing.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/simpledom.dot +54 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/simpledom.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/tutorial.dot +58 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/tutorial.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/utilityclass.dot +73 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/diagram/utilityclass.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/dom.md +281 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/dom.zh-cn.md +285 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/encoding.md +146 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/encoding.zh-cn.md +152 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/faq.md +289 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/faq.zh-cn.md +290 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/features.md +106 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/features.zh-cn.md +103 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/internals.md +368 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/internals.zh-cn.md +363 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/logo/rapidjson.png +0 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/logo/rapidjson.svg +119 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/misc/DoxygenLayout.xml +194 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/misc/doxygenextra.css +274 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/misc/footer.html +11 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/misc/header.html +24 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/npm.md +31 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/performance.md +26 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/performance.zh-cn.md +26 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/pointer.md +234 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/pointer.zh-cn.md +234 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/sax.md +509 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/sax.zh-cn.md +487 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/schema.md +513 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/schema.zh-cn.md +237 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/stream.md +429 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/stream.zh-cn.md +429 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/tutorial.md +536 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/doc/tutorial.zh-cn.md +535 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/docker/debian/Dockerfile +8 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/environment.yml +11 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/CMakeLists.txt +49 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/archiver/archiver.cpp +292 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/archiver/archiver.h +145 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/archiver/archivertest.cpp +287 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/capitalize/capitalize.cpp +67 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/condense/condense.cpp +32 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/filterkey/filterkey.cpp +135 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/filterkeydom/filterkeydom.cpp +170 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/jsonx/jsonx.cpp +207 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/lookaheadparser/lookaheadparser.cpp +350 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/messagereader/messagereader.cpp +105 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/parsebyparts/parsebyparts.cpp +176 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/pretty/pretty.cpp +30 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/prettyauto/prettyauto.cpp +56 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/schemanormalizer/schemanormalizer.cpp +209 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/schemavalidator/schemavalidator.cpp +199 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/serialize/CMakeLists.txt +6 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/serialize/serialize.cpp +173 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/simpledom/simpledom.cpp +29 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/simplepullreader/simplepullreader.cpp +53 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/simplereader/simplereader.cpp +42 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/simplewriter/simplewriter.cpp +36 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/sortkeys/sortkeys.cpp +62 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/traverseaspointer.cpp +39 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/tutorial/tutorial.cpp +151 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/units/CMakeLists.txt +6 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/units/units.cpp +135 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/yggdrasil/CMakeLists.txt +6 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/example/yggdrasil/yggdrasil.cpp +198 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/allocators.h +693 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/base64.h +710 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/cursorstreamwrapper.h +78 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/document.h +7952 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/encodedstream.h +299 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/encodings.h +777 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/error/en.h +206 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/error/error.h +309 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/filereadstream.h +99 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/filewritestream.h +104 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/fwd.h +151 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/helpers.h +187 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/biginteger.h +297 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/clzll.h +71 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/diyfp.h +261 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/dtoa.h +249 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/ieee754.h +78 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/itoa.h +308 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/meta.h +423 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/pow10.h +55 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/regex.h +739 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/stack.h +232 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/strfunc.h +95 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/strtod.h +293 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/internal/swap.h +46 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/istreamwrapper.h +128 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/memorybuffer.h +70 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/memorystream.h +71 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/metaschema.h +1290 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/msinttypes/inttypes.h +316 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/msinttypes/stdint.h +300 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/npy_2_compat.h +249 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/obj.h +4597 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/ostreamwrapper.h +81 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/ply.h +2419 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/pointer.h +1954 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/precision.h +532 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/prettywriter.h +329 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/pyrj.h +1239 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/pyrj_c.h +110 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/pythoncapi_compat.h +2301 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/rapidjson.h +931 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/reader.h +2254 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/schema.h +15170 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/stream.h +223 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/stringbuffer.h +121 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/units.h +3054 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/uri.h +481 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/va_list.h +774 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include/rapidjson/writer.h +970 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/include_dirs.js +2 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/library.json +15 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/license.txt +57 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/package.json +24 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/rapidjson.autopkg +77 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/readme.md +210 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/readme.zh-cn.md +152 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/recipe/bld.bat +21 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/recipe/build.sh +22 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/recipe/meta.yaml +50 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/requirements.txt +1 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/run_tests.sh +26 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/CMakeLists.txt +100 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/example_python.py +57 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/full_schema.yml +6428 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/perftest/CMakeLists.txt +28 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/perftest/misctest.cpp +974 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/perftest/perftest.cpp +24 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/perftest/perftest.h +186 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/perftest/platformtest.cpp +166 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/perftest/rapidjsontest.cpp +564 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/perftest/schematest.cpp +223 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/CMakeLists.txt +126 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/allocatorstest.cpp +292 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/bigintegertest.cpp +138 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/clzlltest.cpp +34 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/cursorstreamwrappertest.cpp +115 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/documenttest.cpp +1388 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/dtoatest.cpp +99 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/encodedstreamtest.cpp +313 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/encodingstest.cpp +451 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/filestreamtest.cpp +155 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/fwdtest.cpp +230 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/istreamwrappertest.cpp +181 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/itoatest.cpp +160 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/jsoncheckertest.cpp +143 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/namespacetest.cpp +70 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/normalizetest.cpp +2374 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/ostreamwrappertest.cpp +92 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/platformtest.cpp +40 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/pointertest.cpp +1806 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/prettywritertest.cpp +373 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/readertest.cpp +2392 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/regextest.cpp +639 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/schematest.cpp +7836 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/simdtest.cpp +219 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/strfunctest.cpp +30 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/stringbuffertest.cpp +192 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/strtodtest.cpp +132 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/unitstest.cpp +153 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/unittest.cpp +70 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/unittest.h +248 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/uritest.cpp +725 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/valuetest.cpp +2955 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/unittest/writertest.cpp +739 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/valgrind-python.supp +505 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/test/valgrind.supp +37 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson/travis-doxygen.sh +128 -0
- yggdrasil_python_rapidjson-1.21.0.0/rapidjson.cpp +7284 -0
- yggdrasil_python_rapidjson-1.21.0.0/recipe/conda_build_config.yaml +7 -0
- yggdrasil_python_rapidjson-1.21.0.0/recipe/meta.yaml +71 -0
- yggdrasil_python_rapidjson-1.21.0.0/requirements-test.txt +16 -0
- yggdrasil_python_rapidjson-1.21.0.0/requirements.txt +21 -0
- yggdrasil_python_rapidjson-1.21.0.0/run_script.sh +44 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/conftest.py +130 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_base_types.py +223 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_circular.py +96 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_dict_subclass.py +57 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_enum.py +19 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_float.py +173 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_geometry.py +615 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_memory_leaks.py +166 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_normalizer.py +224 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_numpy.py +168 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_params.py +765 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_pass1.py +74 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_pass2.py +18 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_pass3.py +23 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_python_classes.py +63 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_rawjson.py +36 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_refs_count.py +221 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_schema_encoder.py +104 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_streams.py +85 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_unicode.py +63 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_units.py +639 -0
- yggdrasil_python_rapidjson-1.21.0.0/tests/test_validator.py +294 -0
- yggdrasil_python_rapidjson-1.21.0.0/tox.ini +27 -0
- yggdrasil_python_rapidjson-1.21.0.0/typings/rapidjson/__init__.pyi +232 -0
- yggdrasil_python_rapidjson-1.21.0.0/units.cpp +2797 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# :Project: python-rapidjson — Configuration for bump-my-version
|
|
3
|
+
# :Created: lun 4 nov 2024, 08:25:29
|
|
4
|
+
# :Author: Lele Gaifax <lele@metapensiero.it>
|
|
5
|
+
# :License: MIT License
|
|
6
|
+
# :Copyright: © 2024 Lele Gaifax
|
|
7
|
+
#
|
|
8
|
+
|
|
9
|
+
[tool.bumpversion]
|
|
10
|
+
current_version = "1.21"
|
|
11
|
+
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)"
|
|
12
|
+
serialize = [
|
|
13
|
+
"{major}.{minor}",
|
|
14
|
+
]
|
|
15
|
+
search = "{current_version}"
|
|
16
|
+
replace = "{new_version}"
|
|
17
|
+
regex = false
|
|
18
|
+
ignore_missing_version = false
|
|
19
|
+
ignore_missing_files = false
|
|
20
|
+
tag = false
|
|
21
|
+
sign_tags = false
|
|
22
|
+
tag_name = "v{new_version}"
|
|
23
|
+
tag_message = "Bump version: {current_version} → {new_version}"
|
|
24
|
+
allow_dirty = false
|
|
25
|
+
commit = false
|
|
26
|
+
message = "Bump version: {current_version} → {new_version}"
|
|
27
|
+
commit_args = ""
|
|
28
|
+
|
|
29
|
+
[[tool.bumpversion.files]]
|
|
30
|
+
filename = "setup.py"
|
|
31
|
+
search = "VERSION = '{current_version}'"
|
|
32
|
+
replace = "VERSION = '{new_version}'"
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
name: Test of conda recipe build
|
|
2
|
+
'on':
|
|
3
|
+
push:
|
|
4
|
+
branches-ignore:
|
|
5
|
+
- gh-pages
|
|
6
|
+
tags:
|
|
7
|
+
- '*'
|
|
8
|
+
schedule:
|
|
9
|
+
- cron: 0 10 * * 1
|
|
10
|
+
jobs:
|
|
11
|
+
build_conda_recipe:
|
|
12
|
+
runs-on: ${{ matrix.os }}
|
|
13
|
+
defaults:
|
|
14
|
+
run:
|
|
15
|
+
shell: bash -el {0}
|
|
16
|
+
strategy:
|
|
17
|
+
matrix:
|
|
18
|
+
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
19
|
+
python-version: ["3.11"]
|
|
20
|
+
builder: [conda, rattler]
|
|
21
|
+
fail-fast: false
|
|
22
|
+
steps:
|
|
23
|
+
- name: Check out repository code
|
|
24
|
+
uses: actions/checkout@v5
|
|
25
|
+
with:
|
|
26
|
+
submodules: true
|
|
27
|
+
|
|
28
|
+
###################################
|
|
29
|
+
# CONDA SETUP
|
|
30
|
+
###################################
|
|
31
|
+
- name: Set up MSVC Compiler on windows
|
|
32
|
+
uses: ilammy/msvc-dev-cmd@v1
|
|
33
|
+
if: matrix.os == 'windows-latest'
|
|
34
|
+
- name: Set up miniconda test environment
|
|
35
|
+
uses: conda-incubator/setup-miniconda@v3
|
|
36
|
+
with:
|
|
37
|
+
activate-environment: ""
|
|
38
|
+
auto-activate-base: true
|
|
39
|
+
auto-update-conda: true
|
|
40
|
+
channels: conda-forge
|
|
41
|
+
channel-priority: strict
|
|
42
|
+
miniforge-version: latest
|
|
43
|
+
conda-remove-defaults: true
|
|
44
|
+
- name: Install conda-build
|
|
45
|
+
if: matrix.builder == 'conda'
|
|
46
|
+
run: |
|
|
47
|
+
conda info
|
|
48
|
+
conda list
|
|
49
|
+
conda install conda-build cmake numpy -y
|
|
50
|
+
- name: Install rattler-build
|
|
51
|
+
if: matrix.builder == 'rattler'
|
|
52
|
+
run: |
|
|
53
|
+
conda info
|
|
54
|
+
conda list
|
|
55
|
+
conda install rattler-build -y
|
|
56
|
+
- name: Check conda installation
|
|
57
|
+
run: |
|
|
58
|
+
conda info
|
|
59
|
+
conda list
|
|
60
|
+
- name: Build conda recipe (using conda-build)
|
|
61
|
+
if: matrix.builder == 'conda'
|
|
62
|
+
run: |
|
|
63
|
+
conda-build --no-anaconda-upload --output-folder $HOME/local_channel/ --python ${{ matrix.python-version }} recipe/
|
|
64
|
+
- name: Build conda recipe (using rattler-build)
|
|
65
|
+
if: matrix.builder == 'rattler'
|
|
66
|
+
run: |
|
|
67
|
+
rattler-build build --recipe "conda.recipe/recipe.yaml" --output-dir $HOME/local_channel/ --variant python=${{ matrix.python-version }}
|
|
68
|
+
# - name: Build conda recipe (using rattler-build action)
|
|
69
|
+
# uses: prefix-dev/rattler-build-action@v0.2.34
|
|
70
|
+
# if: matrix.builder == 'rattler'
|
|
71
|
+
# with:
|
|
72
|
+
# upload-artifact: false
|
|
73
|
+
# build-args: --output-dir $HOME/local_channel/ --variant python=${{ matrix.python-version }}
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# :Project: python-rapidjson -- Github Actions configuration
|
|
3
|
+
# :Created: Fri Oct 2 06:52:59 2020 CEST
|
|
4
|
+
# :Author: Martin Thoma <info@martin-thoma.de>
|
|
5
|
+
# :License: MIT License
|
|
6
|
+
# :Copyright: © 2020 Martin Thoma
|
|
7
|
+
# :Copyright: © 2020, 2021, 2022, 2023, 2024, 2025 Lele Gaifax
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
# For more information see:
|
|
11
|
+
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
12
|
+
# and
|
|
13
|
+
# https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
|
|
14
|
+
|
|
15
|
+
name: Build, test and upload to PyPI
|
|
16
|
+
|
|
17
|
+
on:
|
|
18
|
+
push:
|
|
19
|
+
branches-ignore:
|
|
20
|
+
- gh-pages
|
|
21
|
+
tags:
|
|
22
|
+
- '*'
|
|
23
|
+
schedule:
|
|
24
|
+
- cron: 0 10 * * 1
|
|
25
|
+
- cron: 0 10 1 * *
|
|
26
|
+
|
|
27
|
+
jobs:
|
|
28
|
+
tests:
|
|
29
|
+
name: All tests, on current Python
|
|
30
|
+
runs-on: ubuntu-latest
|
|
31
|
+
|
|
32
|
+
strategy:
|
|
33
|
+
matrix:
|
|
34
|
+
python-version: [3.11]
|
|
35
|
+
|
|
36
|
+
steps:
|
|
37
|
+
- uses: actions/checkout@v5
|
|
38
|
+
with:
|
|
39
|
+
submodules: recursive
|
|
40
|
+
|
|
41
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
42
|
+
uses: actions/setup-python@v6
|
|
43
|
+
with:
|
|
44
|
+
python-version: ${{ matrix.python-version }}
|
|
45
|
+
|
|
46
|
+
- name: Install dependencies
|
|
47
|
+
run: |
|
|
48
|
+
pip install -r requirements-test.txt
|
|
49
|
+
pip install -v .
|
|
50
|
+
|
|
51
|
+
- name: Tests
|
|
52
|
+
run: |
|
|
53
|
+
pytest -sv tests
|
|
54
|
+
|
|
55
|
+
- name: Doctests
|
|
56
|
+
run: |
|
|
57
|
+
make -C docs doctest -e PYTHON=$(which python3)
|
|
58
|
+
|
|
59
|
+
# - name: Typing stub tests
|
|
60
|
+
# run: |
|
|
61
|
+
# stubtest rapidjson
|
|
62
|
+
|
|
63
|
+
debug-tests:
|
|
64
|
+
name: Memory leak tests, on current debug build Python
|
|
65
|
+
runs-on: ubuntu-latest
|
|
66
|
+
|
|
67
|
+
strategy:
|
|
68
|
+
matrix:
|
|
69
|
+
python-version: [3.11]
|
|
70
|
+
|
|
71
|
+
steps:
|
|
72
|
+
- uses: actions/checkout@v5
|
|
73
|
+
with:
|
|
74
|
+
submodules: recursive
|
|
75
|
+
|
|
76
|
+
- uses: deadsnakes/action@v3.2.0
|
|
77
|
+
with:
|
|
78
|
+
python-version: ${{ matrix.python-version }}
|
|
79
|
+
debug: true
|
|
80
|
+
|
|
81
|
+
- name: Install dependencies
|
|
82
|
+
run: |
|
|
83
|
+
pip install -r requirements-test.txt
|
|
84
|
+
pip install --config-settings=cmake.build-type="Debug" --config-settings=cmake.define.RAPIDJSON_CHECK_PYREFS:BOOL=ON -v .
|
|
85
|
+
|
|
86
|
+
- run: |
|
|
87
|
+
pytest -sv tests
|
|
88
|
+
|
|
89
|
+
build_sdist:
|
|
90
|
+
name: Build sdist
|
|
91
|
+
runs-on: ubuntu-latest
|
|
92
|
+
steps:
|
|
93
|
+
- name: Checkout sources
|
|
94
|
+
uses: actions/checkout@v5
|
|
95
|
+
with:
|
|
96
|
+
submodules: true
|
|
97
|
+
|
|
98
|
+
- name: Install Python
|
|
99
|
+
uses: actions/setup-python@v6
|
|
100
|
+
with:
|
|
101
|
+
python-version: "3.11"
|
|
102
|
+
|
|
103
|
+
- name: Install pypa/build
|
|
104
|
+
run: python -m pip install build
|
|
105
|
+
- name: Build a binary wheel and a source tarball
|
|
106
|
+
run: python -m build --sdist
|
|
107
|
+
- name: Upload artifacts
|
|
108
|
+
uses: actions/upload-artifact@v4
|
|
109
|
+
with:
|
|
110
|
+
name: sdist
|
|
111
|
+
path: dist/*.tar.gz
|
|
112
|
+
|
|
113
|
+
# build_wheels:
|
|
114
|
+
# name: Build wheels on ${{matrix.arch}} for ${{ matrix.os }}
|
|
115
|
+
# runs-on: ${{ matrix.os }}
|
|
116
|
+
# strategy:
|
|
117
|
+
# matrix:
|
|
118
|
+
# os:
|
|
119
|
+
# - ubuntu-24.04
|
|
120
|
+
# - macos-13
|
|
121
|
+
# - windows-2025
|
|
122
|
+
# arch:
|
|
123
|
+
# - auto
|
|
124
|
+
# include:
|
|
125
|
+
# - os: ubuntu-24.04
|
|
126
|
+
# arch: aarch64
|
|
127
|
+
# # - os: ubuntu-24.04
|
|
128
|
+
# # arch: ppc64le
|
|
129
|
+
# - os: macos-14
|
|
130
|
+
# arch: arm64
|
|
131
|
+
# python-version: [3.11]
|
|
132
|
+
# fail-fast: false
|
|
133
|
+
|
|
134
|
+
# steps:
|
|
135
|
+
# - name: Checkout sources
|
|
136
|
+
# uses: actions/checkout@v5
|
|
137
|
+
# with:
|
|
138
|
+
# submodules: true
|
|
139
|
+
|
|
140
|
+
# - name: Install Python
|
|
141
|
+
# uses: actions/setup-python@v6
|
|
142
|
+
# with:
|
|
143
|
+
# python-version: ${{ matrix.python-version }}
|
|
144
|
+
|
|
145
|
+
# - uses: docker/setup-qemu-action@v3
|
|
146
|
+
# if: ${{ matrix.arch == 'aarch64' || matrix.arch == 'ppc64le' }}
|
|
147
|
+
# name: Set up QEMU
|
|
148
|
+
|
|
149
|
+
# - name: Build wheels
|
|
150
|
+
# uses: pypa/cibuildwheel@v3.2.0
|
|
151
|
+
# env:
|
|
152
|
+
# CIBW_ARCHS_LINUX: ${{ matrix.arch }}
|
|
153
|
+
# CIBW_ARCHS_MACOS: ${{ matrix.arch }}
|
|
154
|
+
# CIBW_TEST_REQUIRES: "pytest pytest-benchmark pytz"
|
|
155
|
+
# CIBW_TEST_COMMAND: "pytest -sv {project}/tests"
|
|
156
|
+
# CIBW_SKIP: "cp2* cp33* cp34* cp35* cp36* cp38* pp* cp310-manylinux_i686 cp311-manylinux_i686 cp312-manylinux_i686 *-musllinux_*"
|
|
157
|
+
# # Skip tests on emulated hardware, take too long or not supported
|
|
158
|
+
# CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le} *-macosx_*:arm64"
|
|
159
|
+
# CIBW_ENABLE: cpython-prerelease
|
|
160
|
+
# CIBW_ENVIRONMENT: "PIP_ONLY_BINARY=numpy"
|
|
161
|
+
# # CIBW_BEFORE_BUILD: python -m pip install oldest-supported-numpy
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
# - name: Upload artifacts
|
|
165
|
+
# uses: actions/upload-artifact@v4
|
|
166
|
+
# with:
|
|
167
|
+
# name: wheels-for-${{ matrix.os }}-${{ matrix.arch }}
|
|
168
|
+
# path: ./wheelhouse/*.whl
|
|
169
|
+
|
|
170
|
+
upload_wheels:
|
|
171
|
+
name: Upload wheels & sdist to PyPI
|
|
172
|
+
needs: [build_sdist] #, build_wheels]
|
|
173
|
+
runs-on: ubuntu-latest
|
|
174
|
+
environment: pypi
|
|
175
|
+
permissions:
|
|
176
|
+
id-token: write
|
|
177
|
+
|
|
178
|
+
# Upload to PyPI on every tag starting with 'v'
|
|
179
|
+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
|
|
180
|
+
|
|
181
|
+
steps:
|
|
182
|
+
# - uses: actions/download-artifact@v5
|
|
183
|
+
# with:
|
|
184
|
+
# path: dist
|
|
185
|
+
# pattern: wheels-for-*
|
|
186
|
+
# merge-multiple: true
|
|
187
|
+
- uses: actions/download-artifact@v5
|
|
188
|
+
with:
|
|
189
|
+
path: dist
|
|
190
|
+
pattern: sdist
|
|
191
|
+
merge-multiple: true
|
|
192
|
+
|
|
193
|
+
- name: Check downloaded artifacts
|
|
194
|
+
run: ls dist
|
|
195
|
+
- name: Publish package distributions to PyPI
|
|
196
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
|
|
5
|
+
# C extensions
|
|
6
|
+
*.so
|
|
7
|
+
|
|
8
|
+
# Distribution / packaging
|
|
9
|
+
.Python
|
|
10
|
+
env/
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
*.egg-info/
|
|
23
|
+
.installed.cfg
|
|
24
|
+
*.egg
|
|
25
|
+
/rapidjson_exact_version.txt
|
|
26
|
+
_version.py
|
|
27
|
+
|
|
28
|
+
# PyInstaller
|
|
29
|
+
# Usually these files are written by a python script from a template
|
|
30
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
31
|
+
*.manifest
|
|
32
|
+
*.spec
|
|
33
|
+
|
|
34
|
+
# Installer logs
|
|
35
|
+
pip-log.txt
|
|
36
|
+
pip-delete-this-directory.txt
|
|
37
|
+
|
|
38
|
+
# Unit test / coverage reports
|
|
39
|
+
*,cover
|
|
40
|
+
.cache
|
|
41
|
+
.coverage
|
|
42
|
+
.coverage.*
|
|
43
|
+
.tox/
|
|
44
|
+
/.benchmarks/
|
|
45
|
+
/.pytest_cache
|
|
46
|
+
/comparison.json
|
|
47
|
+
coverage.xml
|
|
48
|
+
htmlcov/
|
|
49
|
+
nosetests.xml
|
|
50
|
+
|
|
51
|
+
# Translations
|
|
52
|
+
*.mo
|
|
53
|
+
*.pot
|
|
54
|
+
|
|
55
|
+
# Django stuff:
|
|
56
|
+
*.log
|
|
57
|
+
|
|
58
|
+
# Sphinx documentation
|
|
59
|
+
docs/_build/
|
|
60
|
+
|
|
61
|
+
# PyBuilder
|
|
62
|
+
target/
|
|
63
|
+
|
|
64
|
+
# Emacs stuff
|
|
65
|
+
/.emacs.desktop.lock
|
|
66
|
+
/emacs.desktop
|
|
67
|
+
*~
|
|
68
|
+
|
|
69
|
+
# Virtualenv
|
|
70
|
+
.venv/
|
|
71
|
+
|
|
72
|
+
# Git Worktree
|
|
73
|
+
.wt/
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# :Project: python-rapidjson — Configuration for Read the Docs
|
|
3
|
+
# :Created: sab 18 mag 2024, 15:59:36
|
|
4
|
+
# :Author: Lele Gaifax <lele@metapensiero.it>
|
|
5
|
+
# :License: MIT License
|
|
6
|
+
# :Copyright: © 2024 Lele Gaifax
|
|
7
|
+
#
|
|
8
|
+
|
|
9
|
+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
10
|
+
|
|
11
|
+
version: 2
|
|
12
|
+
|
|
13
|
+
submodules:
|
|
14
|
+
include: all
|
|
15
|
+
|
|
16
|
+
build:
|
|
17
|
+
os: ubuntu-22.04
|
|
18
|
+
tools:
|
|
19
|
+
python: "3.11"
|
|
20
|
+
|
|
21
|
+
python:
|
|
22
|
+
install:
|
|
23
|
+
- requirements: requirements.txt
|
|
24
|
+
- method: pip
|
|
25
|
+
path: .
|
|
26
|
+
|
|
27
|
+
sphinx:
|
|
28
|
+
configuration: docs/conf.py
|