summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update travis matrixpep-0527Bob Ippolito2020-03-141-7/+12
|
* Per PEP 527 stop building bdist_wininstBob Ippolito2020-03-142-2/+2
|
* Set version back to v3.17.0v3.17.0Bob Ippolito2019-11-174-5/+5
|
* Bump version to v3.18.0 to work around build issuesBob Ippolito2019-11-173-4/+4
|
* Rotate API key againBob Ippolito2019-11-171-2/+2
|
* Remove old API keyBob Ippolito2019-11-171-2/+0
|
* Update travis deploy keyBob Ippolito2019-11-171-3/+5
|
* Merge pull request #257 from simplejson/python3-doc-updatesBob Ippolito2019-11-175-340/+261
|\ | | | | Start transitioning docs to be Python 3 centric
| * Finish updating docs to be Python 3-centricBob Ippolito2019-11-174-332/+241
| |
| * Start transitioning docs to be Python 3 centricpython3-doc-updatesBob Ippolito2019-10-223-11/+23
|/
* Merge pull request #256 from simplejson/python-3.8Bob Ippolito2019-10-202-4/+8
|\ | | | | Update build matrix for Python 3.8 on Windows & macOS
| * Update build matrix for Python 3.8 on Windowspython-3.8Bob Ippolito2019-10-202-4/+8
|/
* Merge pull request #255 from cclauss/patch-1Bob Ippolito2019-10-201-5/+4
|\ | | | | Travis CI: Upgrade to Python 3.8
| * Python 3.7.4 on macOSChristian Clauss2019-10-201-1/+1
| |
| * Python 3.7.4 on xcode11.2Christian Clauss2019-10-201-1/+2
| |
| * Travis CI: Upgrade to Python 3.8Christian Clauss2019-10-201-3/+1
|/
* Merge pull request #247 from cclauss/patch-1Bob Ippolito2019-04-171-24/+17
|\ | | | | Travis CI: Simplify by upgrading to dist: xenial
| * Preserve the sort ordercclauss2019-04-171-11/+13
| |
| * pypy and pypy3 NEED Trustycclauss2019-04-171-3/+5
| |
| * Python 2.6 and 3.3 NEED Trustycclauss2019-04-171-2/+4
| |
| * Travis CI: Simplify by upgrading to dist: xenialcclauss2019-04-171-25/+12
|/ | | __Trusty__ reaches its end-of-life this month https://wiki.ubuntu.com/Releases so we should stop hardcoding it.
* Merge pull request #246 from cclauss/patch-1Bob Ippolito2019-04-171-9/+0
|\ | | | | .travis.yml: The 'sudo' tag is now deprecated in Travis CI
| * .travis.yml: The 'sudo' tag is now deprecated in Travis CIcclauss2019-04-171-9/+0
|/ | | | | [Travis are now recommending removing the __sudo__ tag](https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration). "_If you currently specify __sudo: false__ in your __.travis.yml__, we recommend removing that configuration_"
* require docker and sudo for xenial py3.7Bob Ippolito2018-09-081-1/+3
|
* Disable BUILD_WHEEL until we know it works, re #181Bob Ippolito2018-09-081-4/+2
|
* Merge branch 'master' of https://github.com/simplejson/simplejsonBob Ippolito2018-09-081-4/+1
|\
| * Simplify travis configBob Ippolito2018-09-071-4/+1
| |
* | No longer signing releasesBob Ippolito2018-09-071-2/+1
|/
* Add appveyor status iconBob Ippolito2018-09-071-0/+3
|
* Update CHANGES for v3.16.1v3.16.1Bob Ippolito2018-09-071-1/+2
|
* Merge pull request #236 from simplejson/json-lines-exampleBob Ippolito2018-09-076-29/+54
|\ | | | | Prep for v3.16.1 and add JSON lines example
| * Prep for v3.16.1 and add JSON lines examplejson-lines-exampleBob Ippolito2018-09-066-29/+54
|/
* Merge pull request #235 from simplejson/felixonmars-patch-1-1Bob Ippolito2018-09-041-1/+1
|\ | | | | Fix a typo in appveyor.yml
| * Update appveyor.ymlfelixonmars-patch-1-1Felix Yan2018-09-051-1/+1
|/
* Merge pull request #233 from simplejson/travis-py37Bob Ippolito2018-09-042-2/+12
|\ | | | | Add Python 3.7 to Travis
| * pyenv on osx is not up to date yetBob Ippolito2018-09-041-5/+2
| |
| * Merge branch 'master' into travis-py37Bob Ippolito2018-09-041-5/+13
| |\ | |/ |/|
* | Merge pull request #234 from simplejson/appveyor-py37Bob Ippolito2018-09-041-5/+13
|\ \ | | | | | | Add Python 3.7 to appveyor
| * | Add Python 3.7 to appveyorBob Ippolito2018-09-041-5/+13
|/ /
| * Change pyenv clone URLBob Ippolito2018-09-041-1/+1
| |
| * Use xenial distro for Python 3.7Bob Ippolito2018-09-041-1/+1
| | | | | | per https://github.com/travis-ci/travis-ci/issues/9815
| * Add Python 3.7 to TravisBob Ippolito2018-09-041-1/+14
|/
* Merge pull request #231 from ushuz/manylinux1-wheelsBob Ippolito2018-09-033-2/+12
|\ | | | | Build manylinux1 wheels with cibuildwheel 0.9.4
| * Build manylinux1 wheels with cibuildwheel 0.9.4John Hu2018-09-033-2/+12
|/
* Update CHANGES for v3.16.0v3.16.0Bob Ippolito2018-06-284-4/+14
|
* Merge pull request #225 from benjaminp/empty-strBob Ippolito2018-06-272-7/+10
|\ | | | | On Python 2, decode empty strings as str not unicode.
| * fix indentationBenjamin Peterson2018-06-261-1/+1
| |
| * add testBenjamin Peterson2018-06-261-0/+2
| |
| * On Python 2, decode empty strings as str not unicode.Benjamin Peterson2018-06-261-7/+8
|/ | | | | | | | | | | | | | | | In general on Python 2, simplejson decodes ASCII strings as str, only promoting to unicode when needed: >>> simplejson.loads('["Spaetzle", "SpƤtzle"]') ['Spaetzle', u'Sp\xe4tzle'] Since 83a493db6a8b859ec7b10fa85365dd3fdf144c68, though, simplejson has always decoded empty JSON strings as unicode: >>> simplejson.loads('""') u'' This PR restores the old behavior of decoding empty strings as str.
* Merge pull request #224 from hugovk/python_requiresBob Ippolito2018-06-191-2/+5
|\ | | | | Add python_requires to help pip