summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Also include Python 3.9python-3.8Stefan Kögl2021-03-132-2/+3
|
* Remove 3.9-dev as test targetStefan Kögl2019-11-141-1/+0
|
* Merge branch 'master' into python-3.8Stefan Kögl2019-11-130-0/+0
|\
| * Merge pull request #37 from stefankoegl/python-3.7Stefan Kögl2019-11-132-1/+3
| |\ | | | | | | Support Python 3.7
| | * Support Python 3.7python-3.7Stefan Kögl2019-09-182-1/+3
| |/
* | Update Python versionsStefan Kögl2019-11-132-4/+6
|/
* Avoid converting readme to rST for PyPI uploadStefan Kögl2018-09-252-9/+8
| | | | | PyPI now supports markdown descriptions. See https://dustingram.com/articles/2018/03/16/markdown-descriptions-on-pypi
* Bump version to 2.0Stefan Kögl2018-09-251-1/+1
|
* Merge pull request #31 from kislyuk/patch-1Stefan Kögl2018-06-281-3/+3
|\ | | | | Fix typos in messages
| * Fix typos in messagesAndrey Kislyuk2018-06-011-3/+3
|/
* Merge pull request #30 from jdanford/use-svg-status-iconsStefan Kögl2018-05-171-2/+2
|\ | | | | Use SVG versions of status icons in README.md
| * Use SVG versions of status icons in README.mdJordan Danford2018-05-161-2/+2
|/
* Merge pull request #26 from stefankoegl/cmd-ptr-argStefan Kögl2018-01-161-3/+26
|\ | | | | Accept pointer as argument in commandline utility
| * Accept pointer as argument in commandline utilitycmd-ptr-argStefan Kögl2017-12-311-3/+26
| | | | | | | | Fixes #25
* | Merge pull request #28 from hugovk/rm-eolStefan Kögl2018-01-164-6/+3
|\ \ | | | | | | Drop support for EOL Python 2.6 and 3.3
| * | Drop support for EOL Python 2.6 and 3.3Hugo2018-01-154-6/+3
| |/
* | Merge pull request #27 from hugovk/patch-1Stefan Kögl2018-01-161-3/+9
|\ \ | |/ |/| Fix badges
| * Fix badgesHugo2018-01-151-3/+9
|/ | | | | * pypip.in is down: https://github.com/badges/pypipins/issues/39 * PyPI download badges no longer available: https://github.com/badges/shields/issues/716 * Fix some typos
* Bump version to 1.14v1.14Stefan Kögl2017-10-301-1/+1
|
* Perform input validation in JsonPoinervalidationStefan Kögl2017-10-292-0/+14
|
* Install pandoc for deploymentStefan Kögl2017-10-261-0/+4
| | | | https://docs.travis-ci.com/user/installing-dependencies/#Installing-Packages-on-Container-Based-Infrastructure
* Bump version to 1.13v1.13Stefan Kögl2017-10-261-1/+1
|
* Install dev requirements before deploy from Travis-CIStefan Kögl2017-10-261-0/+2
|
* Enable automatic deployments from Travis-CIStefan Kögl2017-10-261-0/+8
|
* Reformat .travis.yml with travis commandline toolStefan Kögl2017-10-261-18/+14
|
* Also test on Python development versionsStefan Kögl2017-10-261-0/+3
|
* Pointers should not be assumed urlencoded, fix #22issue-22Stefan Kögl2017-10-261-7/+21
|
* Rename license, fixes #23Stefan Kögl2017-10-022-1/+1
|
* For pypandoc requirement for release procedureStefan Kögl2017-10-021-1/+1
|
* Bump version to 1.12v1.12Stefan Kögl2017-09-101-1/+1
|
* Revert optimizations due to compatibility issues with jsonpatchStefan Kögl2017-09-103-107/+77
|
* Add config for automatic deployment from Travis-CIStefan Kögl2017-09-101-15/+19
|
* Bump requirement for pandocv1.11Stefan Kögl2017-09-101-1/+1
|
* Add setup.cfg for universal wheelsStefan Kögl2017-09-101-0/+2
|
* Bump version to 1.11Stefan Kögl2017-09-101-24/+1
|
* Merge branch 'alexsdutton-more-efficient-resolving'Stefan Kögl2017-09-100-0/+0
|\
| * Merge branch 'more-efficient-resolving' of ↵Stefan Kögl2017-09-100-0/+0
| |\ |/ / | | | | https://github.com/alexsdutton/python-json-pointer into alexsdutton-more-efficient-resolving
| * Re-factor resolve and to_last to not make lots of function calls.Alexander Dutton2015-02-191-14/+39
| | | | | | | | | | Also means that isinstance(..., Sequence) doesn't get called twice for non-list sequences (once in walk, and one in get_part)
| * Optimize in get_part for the common cases of doc being dict or listAlexander Dutton2015-02-151-1/+6
| |
| * Reduce number of isinstance() calls in get_partAlexander Dutton2015-02-151-15/+6
| |
| * Simplify `walk` method. No need to look before we leap.Alexander Dutton2015-02-151-22/+7
| |
* | Merge branch 'alexsdutton-more-efficient-resolving'Stefan Kögl2017-09-101-37/+86
|\ \
| * | Resolve merge conflicts, style issuesStefan Kögl2017-09-101-37/+86
|/ /
* | Add support for Python 3.6Stefan Kögl2017-09-102-0/+2
| |
* | Merge branch 'thekafkaf-broad-exception-handling'Stefan Kögl2017-09-102-44/+84
|\ \
| * \ Merge branch 'broad-exception-handling' of ↵Stefan Kögl2017-09-102-44/+84
| |\ \ |/ / / | | | | | | https://github.com/thekafkaf/python-json-pointer into thekafkaf-broad-exception-handling
| * | Removed redundent assertion(part of it)kafkaf-2014-11-141-1/+1
| | |
| * | Using the same handling for the case in which the doc is a mapping or an ↵kafkaf-2014-11-142-12/+9
| | | | | | | | | | | | object that support __getitem__(but not a sequence), Updated the tests
| * | Removed the setUpClass method to support py26kafkaf-2014-11-141-41/+39
| | |
| * | Removed unrelated changes to the contains method, reverted the exception handlekafkaf-2014-11-142-4/+2
| | |