Skip to content
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

Initial Update #23

Merged
merged 11 commits into from
Feb 24, 2017
Merged

Initial Update #23

merged 11 commits into from
Feb 24, 2017

Conversation

pyup-bot
Copy link
Contributor

This is my first visit to this fine repo so I have bundled all updates in a single pull request to make things easier for you to merge.

Close this pull request and delete the branch if you want me to start with single pull requests right away

Here's the executive summary:

Updates

Here's a list of all the updates bundled in this pull request. I've added some links to make it easier for you to find all the information you need.

django 1.10.4 » 1.10.5 PyPI | Changelog | Homepage
django-environ 0.4.0 » 0.4.1 PyPI | Repo
Pillow 3.4.2 » 4.0.0 PyPI | Changelog | Homepage
djangorestframework 3.5.3 » 3.5.4 PyPI | Changelog | Homepage
django-health-check 2.2.0 » 2.2.2 PyPI | Repo
Sphinx 1.4.8 » 1.5.2 PyPI | Changelog | Homepage
ipdb 0.10.1 » 0.10.2 PyPI | Changelog | Repo
coverage 4.3.1 » 4.3.4 PyPI | Changelog | Docs
django-coverage-plugin 1.3.1 » 1.4.2 PyPI | Repo
django-test-plus 1.0.15 » 1.0.17 PyPI | Changelog | Repo
flake8 3.2.1 » 3.3.0 PyPI | Repo

Changelogs

Pillow 3.4.2 -> 4.0.0

4.0.0


  • Refactor out postprocessing hack to load_end in PcdImageFile
    [wiredfool]
  • Add center and translate option to Image.rotate. 2328
    [lambdafu]

  • Test: Relax WMF test condition, fixes 2323
    [wiredfool]

  • Allow 0 size images, Fixes 2259, Reverts to pre-3.4 behavior.
    [wiredfool]

  • SGI: Save uncompressed SGI/BW/RGB/RGBA files 2325
    [jbltx]

  • Depends: Updated pngquant to 2.8.2 2319
    [radarhere]

  • Test: Added correctness tests for opening SGI images 2324
    [wiredfool]
  • Allow passing a list or tuple of individual frame durations when saving a GIF 2298
    [Xdynix]
  • Unified different GIF optimize conditions 2196
    [radarhere]
  • Build: Refactor dependency installation 2305
    [hugovk]
  • Test: Add python 3.6 to travis, tox 2304
    [hugovk]
  • Test: Fix coveralls coverage for Python+C 2300
    [hugovk]
  • Remove executable bit and shebang from OleFileIO.py 2308
    [jwilk, radarhere]
  • PyPy: Buffer interface workaround 2294
    [wiredfool]
  • Test: Switch to Ubuntu Trusty 14.04 on Travis CI 2294
  • Remove vendored version of olefile Python package in favor of upstream 2199
    [jdufresne]
  • Updated comments to use print as a function 2234
    [radarhere]
  • Set executable flag on selftest.py, setup.py and added shebang line 2282, 2277
    [radarhere, homm]
  • Test: Increase epsilon for FreeType 2.7 as rendering is slightly different. 2286
    [hugovk]
  • Test: Faster assert_image_similar 2279
    [homm]
  • Removed depreciated internal "stretch" method 2276
    [homm]
  • Removed the handles_eof flag in decode.c 2223
    [wiredfool]
  • Tiff: Fix for writing Tiff to BytesIO using libtiff 2263
    [wiredfool]
  • Doc: Design docs 2269
    [wiredfool]
  • Test: Move tests requiring libtiff to test_file_libtiff 2273
    [wiredfool]
  • Update Maxblock heuristic 2275
    [wiredfool]
  • Fix for 2-bit palette corruption 2274
    [pdknsk, wiredfool]
  • Tiff: Update info.icc_profile when using libtiff reader. 2193
    [lambdafu]
  • Test: Fix bug in test_ifd_rational_save when libtiff is not available 2270
    [ChristopherHogan]
  • ICO: Only save relevant sizes 2267
    [hugovk]
  • ICO: Allow saving .ico files of 256x256 instead of 255x255 2265
    [hugovk]
  • Fix TIFFImagePlugin ICC color profile saving. 2087
    [cskau]
  • Doc: Improved description of ImageOps.deform resample parameter 2256
    [radarhere]
  • EMF: support negative bounding box coordinates 2249
    [glexey]
  • Close file if opened in WalImageFile 2216
    [radarhere]
  • Use Image._new() instead of _makeself() 2248
    [homm]
  • SunImagePlugin fixes 2241
    [wiredfool]
  • Use minimal scale for jpeg drafts 2240
    [homm]
  • Updated dependency scripts to use FreeType 2.7, OpenJpeg 2.1.2, WebP 0.5.2 and Tcl/Tk 8.6.6 2235, 2236, 2237, 2290, 2302
    [radarhere]
  • Fix "invalid escape sequence" bytestring warnings in Python 3.6 2186
    [timgraham]
  • Removed support for Python 2.6 and Python 3.2 2192
    [jdufresne]
  • Setup: Raise custom exceptions when required/requested dependencies are not found 2213
    [wiredfool]
  • Use a context manager in FontFile.save() to ensure file is always closed 2226
    [jdufresne]
  • Fixed bug in saving to fp-objects in Python >= 3.4 2227
    [radarhere]
  • Use a context manager in ImageFont._load_pilfont() to ensure file is always closed 2232
    [jdufresne]
  • Use generator expressions instead of list comprehension 2225
    [jdufresne]
  • Close file after reading in ImagePalette.load() 2215
    [jdufresne]
  • Changed behaviour of default box argument for paste method to match docs 2211
    [radarhere]
  • Add support for another BMP bitfield 2221
    [jmerdich]
  • Added missing top-level test main 2222
    [radarhere]
  • Replaced range(len()) 2197
    [radarhere]
  • Fix for ImageQt Segfault, fixes 1370 2182
    [wiredfool]
  • Setup: Close file in setup.py after finished reading 2208
    [jdufresne]
  • Setup: optionally use pkg-config (when present) to detect dependencies 2074
    [garbas]
  • Search for tkinter first in builtins 2210
    [matthew-brett]
  • Tests: Replace try/except/fail pattern with TestCase.assertRaises() 2200
    [jdufresne]
  • Tests: Remove unused, open files at top level of tests 2188
    [jdufresne]
  • Replace type() equality checks with isinstance 2184
    [jdufresne]
  • Doc: Move ICO out of the list of read-only file formats 2180
    [alexwlchan]
  • Doc: Fix formatting, too-short title underlines and malformed table 2175
    [hugovk]
  • Fix BytesWarnings 2172
    [jdufresne]
  • Use Integer division to eliminate deprecation warning. 2168
    [mastermatt]
  • Doc: Update compatibility matrix
    [daavve, wiredfool]

Sphinx 1.4.8 -> 1.5.2

1.5.2

===============================

Incompatible changes

  • Dependency requirement updates: requests 2.4.0 or above (refs: 3268, 3310)

Features added

  • 3241: emit latex warning if buggy titlesec (ref 3210)
  • 3194: Refer the $MAKE environment variable to determine make command
  • Emit warning for nested numbered toctrees (refs: 3142)
  • 978: intersphinx_mapping also allows a list as a parameter
  • 3340: (LaTeX) long lines in :dudir:parsed-literal are wrapped like in
    :rst:dir:code-block, inline math and footnotes are fully functional.

Bugs fixed

  • 3246: xapian search adapter crashes
  • 3253: In Py2 environment, building another locale with a non-captioned
    toctree produces None captions
  • 185: References to section title including raw node has broken
  • 3255: In Py3.4 environment, autodoc doesn't support documentation for
    attributes of Enum class correctly.
  • 3261: latex_use_parts makes sphinx crash
  • The warning type misc.highlighting_failure does not work
  • 3294: add_latex_package() make crashes non-LaTeX builders
  • The caption of table are rendered as invalid HTML (refs: 3287)
  • 3268: Sphinx crashes with requests package from Debian jessie
  • 3284: Sphinx crashes on parallel build with an extension which raises
    unserializable exception
  • 3315: Bibliography crashes on latex build with docclass 'memoir'
  • 3328: Could not refer rubric implicitly
  • 3329: emit warnings if po file is invalid and can't read it. Also writing mo too
  • 3337: Ugly rendering of definition list term's classifier
  • 3335: gettext does not extract field_name of a field in a field_list
  • 2952: C++, fix refs to operator() functions.
  • Fix Unicode super- and subscript digits in :rst:dir:code-block and
    parsed-literal LaTeX output (ref 3342)
  • LaTeX writer: leave " character inside parsed-literal as is (ref 3341)
  • 3234: intersphinx failed for encoded inventories
  • 3158: too much space after captions in PDF output
  • 3317: An URL in parsed-literal contents gets wrongly rendered in PDF if
    with hyphen
  • LaTeX crash if the filename of an image inserted in parsed-literal
    via a substitution contains an hyphen (ref 3340)
  • LaTeX rendering of inserted footnotes in parsed-literal is wrong (ref 3340)
  • Inline math in parsed-literal is not rendered well by LaTeX (ref 3340)
  • 3308: Parsed-literals don't wrap very long lines with pdf builder (ref 3340)
  • 3295: Could not import extension sphinx.builders.linkcheck
  • 3285: autosummary: asterisks are escaped twice
  • LaTeX, pass dvipdfm option to geometry package for Japanese documents (ref 3363)

1.5.1

=====================================

Features added

  • 3214: Allow to suppress "unknown mimetype" warnings from epub builder using
    :confval:suppress_warnings.

Bugs fixed

  • 3195: Can not build in parallel
  • 3198: AttributeError is raised when toctree has 'self'
  • 3211: Remove untranslated sphinx locale catalogs (it was covered by
    untranslated it_IT)
  • 3212: HTML Builders crashes with docutils-0.13
  • 3207: more latex problems with references inside parsed-literal directive
    (\DUrole)
  • 3205: sphinx.util.requests crashes with old pyOpenSSL (< 0.14)
  • 3220: KeyError when having a duplicate citation
  • 3200: LaTeX: xref inside desc_name not allowed
  • 3228: build_sphinx command crashes when missing dependency
  • 2469: Ignore updates of catalog files for gettext builder. Thanks to
    Hiroshi Ohkubo.
  • 3183: Randomized jump box order in generated index page.

1.5

  • 3069: Even if &#39;babel&#39; key is set to empty string, LaTeX output contains
    one \addto\captions...
  • 3123: user &#39;babel&#39; key setting is not obeyed anymore
  • 3155: Fix JavaScript for html_sourcelink_suffix fails with IE and Opera
  • 3085: keep current directory after breaking build documentation. Thanks to
    Timotheus Kampik.
  • 3181: pLaTeX crashes with a section contains endash
  • 3180: latex: add stretch/shrink between successive singleline or
    multipleline cpp signatures (ref 3072)
  • 3128: globing images does not support .svgz file
  • 3015: fix a broken test on Windows.
  • 1843: Fix documentation of descriptor classes that have a custom metaclass.
    Thanks to Erik Bray.
  • 3190: util.split_docinfo fails to parse multi-line field bodies
  • 3024, 3037: In Python3, application.Sphinx._log crushed when the log message cannot
    be encoded into console encoding.

Testing

  • To simplify, sphinx uses external mock package even if unittest.mock exists.

1.5b1

  • 2432: Fix unwanted * between varargs and keyword only args. Thanks to Alex Grönholm.
  • 3062: Failed to build PDF using 1.5a2 (undefined \hypersetup for
    Japanese documents since PR3030)
  • Better rendering of multiline signatures in html.
  • 777: LaTeX output "too deeply nested" (ref 3096)
  • Let LaTeX image inclusion obey scale before textwidth fit (ref 2865, 3059)
  • 3019: LaTeX fails on description of C function with arguments (ref 3083)
  • fix latex inline literals where &lt; &gt; - gobbled a space

1.5a2

  • 2810: Problems with pdflatex in an Italian document
  • Use latex_elements.papersize to specify papersize of LaTeX in Makefile
  • 2988: linkcheck: retry with GET request if denied HEAD request
  • 2990: linkcheck raises "Can't convert 'bytes' object to str implicitly" error
    if linkcheck_anchors enabled
  • 3004: Invalid link types "top" and "up" are used
  • 3009: Bad rendering of parsed-literals in LaTeX since Sphinx 1.4.4
  • 3000: option directive generates invalid HTML anchors
  • 2984: Invalid HTML has been generated if html_split_index enabled
  • 2986: themes/basic/defindex.html should be changed for html5 friendly
  • 2987: Invalid HTML has been generated if multiple IDs are assigned to a list
  • 2891: HTML search does not provide all the results
  • 1986: Title in PDF Output
  • 147: Problem with latex chapter style
  • 3018: LaTeX problem with page layout dimensions and chapter titles
  • Fix an issue with \pysigline in LaTeX style file (ref 3023)
  • 3038: sphinx.ext.math* raises TypeError if labels are duplicated
  • 3031: incompatibility with LaTeX package tocloft
  • 3003: literal blocks in footnotes are not supported by Latex
  • 3047: spacing before footnote in pdf output is not coherent and allows breaks
  • 3045: HTML search index creator should ignore "raw" content if now html
  • 3039: English stemmer returns wrong word if the word is capitalized
  • Fix make-mode Makefile template (ref 3056, 2936)

1.5a1

  • 2707: (latex) the column width is badly computed for tabular
  • 2799: Sphinx installs roles and directives automatically on importing sphinx
    module. Now Sphinx installs them on running application.
  • sphinx.ext.autodoc crashes if target code imports * from mock modules
    by autodoc_mock_imports.
  • 1953: Sphinx.add_node does not add handlers the translator installed by
    html_translator_class
  • 1797: text builder inserts blank line on top
  • 2894: quickstart main() doesn't use argv argument
  • 2874: gettext builder could not extract all text under the only
    directives
  • 2485: autosummary crashes with multiple source_suffix values
  • 1734: Could not translate the caption of toctree directive
  • Could not translate the content of meta directive (ref: 1734)
  • 2550: external links are opened in help viewer
  • 2687: Running Sphinx multiple times produces 'already registered' warnings

1.4.9

=====================================

Bugs fixed

  • 2936: Fix doc/Makefile that can't build man because doc/man exists
  • 3058: Using the same 'caption' attribute in multiple 'toctree' directives
    results in warning / error
  • 3068: Allow the '=' character in the -D option of sphinx-build.py
  • 3074: add_source_parser() crashes in debug mode
  • 3135: sphinx.ext.autodoc crashes with plain Callable
  • 3150: Fix query word splitter in JavaScript. It behaves as same as Python's regular expression.
  • 3093: gettext build broken on substituted images.
  • 3093: gettext build broken on image node under note directive.
  • imgmath: crashes on showing error messages if image generation failed
  • 3117: LaTeX writer crashes if admonition is placed before first section title
  • 3164: Change search order of sphinx.ext.inheritance_diagram

ipdb 0.10.1 -> 0.10.2

0.10.2


coverage 4.3.1 -> 4.3.4

4.3.4


  • Fixing 2.6 in version 4.3.3 broke other things, because the too-tricky
    exception wasn't properly derived from Exception, described in issue 556_.
    A newb mistake; it hasn't been a good few days.

.. _issue 556: https://bitbucket.org/ned/coveragepy/issues/556/43-fails-if-there-are-html-files-in-the

.. _changes_433:

4.3.3


  • Python 2.6 support was broken due to a testing exception imported for the
    benefit of the coverage.py test suite. Properly conditionalizing it fixed
    issue 554_ so that Python 2.6 works again.

.. _issue 554: https://bitbucket.org/ned/coveragepy/issues/554/traceback-on-python-26-starting-with-432

.. _changes_432:

4.3.2


  • Using the --skip-covered option on an HTML report with 100% coverage
    would cause a "No data to report" error, as reported in issue 549_. This is
    now fixed; thanks, Loïc Dachary.
  • If-statements can be optimized away during compilation, for example, if 0:
    or if __debug__:. Coverage.py had problems properly understanding these
    statements which existed in the source, but not in the compiled bytecode.
    This problem, reported in issue 522_, is now fixed.
  • If you specified --source as a directory, then coverage.py would look for
    importable Python files in that directory, and could identify ones that had
    never been executed at all. But if you specified it as a package name, that
    detection wasn't performed. Now it is, closing issue 426_. Thanks to Loïc
    Dachary for the fix.
  • If you started and stopped coverage measurement thousands of times in your
    process, you could crash Python with a "Fatal Python error: deallocating
    None" error. This is now fixed. Thanks to Alex Groce for the bug report.
  • On PyPy, measuring coverage in subprocesses could produce a warning: "Trace
    function changed, measurement is likely wrong: None". This was spurious, and
    has been suppressed.
  • Previously, coverage.py couldn't start on Jython, due to that implementation
    missing the multiprocessing module (issue 551). This problem has now been
    fixed. Also, issue 322
    about not being able to invoke coverage
    conveniently, seems much better: jython -m coverage run myprog.py works
    properly.
  • Let's say you ran the HTML report over and over again in the same output
    directory, with --skip-covered. And imagine due to your heroic
    test-writing efforts, a file just acheived the goal of 100% coverage. With
    coverage.py 4.3, the old HTML file with the less-than-100% coverage would be
    left behind. This file is now properly deleted.

.. _issue 322: https://bitbucket.org/ned/coveragepy/issues/322/cannot-use-coverage-with-jython
.. issue 426: https://bitbucket.org/ned/coveragepy/issues/426/difference-between-coverage-results-with
.. issue 522: https://bitbucket.org/ned/coveragepy/issues/522/incorrect-branch-reporting-with-__debug

.. _issue 549: https://bitbucket.org/ned/coveragepy/issues/549/skip-covered-with-100-coverage-throws-a-no
.. _issue 551: https://bitbucket.org/ned/coveragepy/issues/551/coveragepy-cannot-be-imported-in-jython27

.. _changes_431:

django-test-plus 1.0.15 -> 1.0.17

1.0.17


  • Added assertResponseHeaders

1.0.16


  • Added print_form_errors utility

Once you have closed this pull request, I'll create seperate pull requests for every update as soon as I find them.

That's it for now!

Happy merging! 🤖

@krzysztofzuraw krzysztofzuraw merged commit f8f1302 into master Feb 24, 2017
@krzysztofzuraw krzysztofzuraw deleted the pyup-initial-update branch February 24, 2017 17:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ipdb should ask iPython 5 which debugger class to use Using set_trace in 0.9.1 raises an error
2 participants