Skip to content
This repository has been archived by the owner on Mar 7, 2021. It is now read-only.

Scheduled monthly dependency update for March #9

Closed
wants to merge 10 commits into from

Conversation

pyup-bot
Copy link
Contributor

@pyup-bot pyup-bot commented Mar 1, 2018

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.

arrow 0.12.0 » 0.12.1 PyPI | Changelog | Repo
Babel 2.5.1 » 2.5.3 PyPI | Changelog | Homepage | Docs
certifi 2017.11.5 » 2018.1.18 PyPI | Homepage
cffi 1.11.2 » 1.11.5 PyPI | Changelog | Docs
coverage 4.4.2 » 4.5.1 PyPI | Changelog | Repo
imagesize 0.7.1 » 1.0.0 PyPI | Repo
pytz 2017.3 » 2018.3 PyPI | Homepage | Docs
Sphinx 1.6.5 » 1.7.1 PyPI | Changelog | Homepage
texttable 1.1.1 » 1.2.1 PyPI | Changelog | Repo
tqdm 4.19.5 » 4.19.6 PyPI | Changelog | Repo

Changelogs

Babel 2.5.1 -> 2.5.3

2.5.2


Bugfixes

  • Revert the unnecessary PyInstaller fixes from 2.5.0 and 2.5.1 (533) (yagebu)

cffi 1.11.2 -> 1.11.5

1.11.5

=======

  • Issue 357_: fix ffi.emit_python_code() which generated a buggy
    Python file if you are using a struct with an anonymous union
    field or vice-versa.
  • Windows: ffi.dlopen() should now handle unicode filenames.
  • ABI mode: implemented ffi.dlclose() for the in-line case (it used
    to be present only in the out-of-line case).
  • Fixed a corner case for setup.py install --record=xx --root=yy
    with an out-of-line ABI module. Also fixed Issue 345_.
  • More hacks on Windows for running CFFI's own setup.py.
  • Issue 358_: in embedding, to protect against (the rare case of)
    Python initialization from several threads in parallel, we have to use
    a spin-lock. On CPython 3 it is worse because it might spin-lock for
    a long time (execution of Py_InitializeEx()). Sadly, recent
    changes to CPython make that solution needed on CPython 2 too.
  • CPython 3 on Windows: we no longer compile with Py_LIMITED_API
    by default because such modules cannot be used with virtualenv.
    Issue 350_ mentions a workaround if you still want that and are not
    concerned about virtualenv: pass a define_macros=[("Py_LIMITED_API", None)] to the ffibuilder.set_source() call.

.. _Issue 345: https://bitbucket.org/cffi/cffi/issues/345/
.. _Issue 350: https://bitbucket.org/cffi/cffi/issues/350/
.. _Issue 358: https://bitbucket.org/cffi/cffi/issues/358/
.. _Issue 357: https://bitbucket.org/cffi/cffi/issues/357/

1.11.4

=======

  • Windows: reverted linking with python3.dll, because
    virtualenv does not make this DLL available to virtual environments
    for now. See Issue 355_. On Windows only, the C extension
    modules created by cffi follow for now the standard naming scheme
    foo.cp36-win32.pyd, to make it clear that they are regular
    CPython modules depending on python36.dll.

.. _Issue 355: https://bitbucket.org/cffi/cffi/issues/355/

1.11.3

=======

  • Fix on CPython 3.x: reading the attributes __loader__ or
    __spec__ from the cffi-generated lib modules gave a buggy
    SystemError. (These attributes are always None, and provided only to
    help compatibility with tools that expect them in all modules.)
  • More Windows fixes: workaround for MSVC not supporting large
    literal strings in C code (from
    ffi.embedding_init_code(large_string)); and an issue with
    Py_LIMITED_API linking with python35.dll/python36.dll instead
    of python3.dll.
  • Small documentation improvements.

coverage 4.4.2 -> 4.5.1

4.5.1


  • Now that 4.5 properly separated the [run] omit and [report] omit
    settings, an old bug has become apparent. If you specified a package name
    for [run] source, then omit patterns weren't matched inside that package.
    This bug (issue 638_) is now fixed.
  • On Python 3.7, reporting about a decorated function with no body other than a
    docstring would crash coverage.py with an IndexError (issue 640_). This is
    now fixed.
  • Configurer plugins are now reported in the output of --debug=sys.

.. _issue 638: https://bitbucket.org/ned/coveragepy/issues/638/run-omit-is-ignored-since-45
.. _issue 640: https://bitbucket.org/ned/coveragepy/issues/640/indexerror-reporting-on-an-empty-decorated

.. _changes_45:

4.5


  • A new kind of plugin is supported: configurators are invoked at start-up to
    allow more complex configuration than the .coveragerc file can easily do.
    See :ref:api_plugin for details. This solves the complex configuration
    problem described in issue 563_.
  • The fail_under option can now be a float. Note that you must specify the
    [report] precision configuration option for the fractional part to be
    used. Thanks to Lars Hupfeldt Nielsen for help with the implementation.
    Fixes issue 631_.
  • The include and omit options can be specified for both the [run]
    and [report] phases of execution. 4.4.2 introduced some incorrect
    interactions between those phases, where the options for one were confused
    for the other. This is now corrected, fixing issue 621_ and issue 622_.
    Thanks to Daniel Hahler for seeing more clearly than I could.
  • The coverage combine command used to always overwrite the data file, even
    when no data had been read from apparently combinable files. Now, an error
    is raised if we thought there were files to combine, but in fact none of them
    could be used. Fixes issue 629_.
  • The coverage combine command could get confused about path separators
    when combining data collected on Windows with data collected on Linux, as
    described in issue 618_. This is now fixed: the result path always uses
    the path separator specified in the [paths] result.
  • On Windows, the HTML report could fail when source trees are deeply nested,
    due to attempting to create HTML filenames longer than the 250-character
    maximum. Now filenames will never get much larger than 200 characters,
    fixing issue 627_. Thanks to Alex Sandro for helping with the fix.

.. _issue 563: https://bitbucket.org/ned/coveragepy/issues/563/platform-specific-configuration
.. _issue 618: https://bitbucket.org/ned/coveragepy/issues/618/problem-when-combining-windows-generated
.. _issue 621: https://bitbucket.org/ned/coveragepy/issues/621/include-ignored-warning-when-using
.. _issue 622: https://bitbucket.org/ned/coveragepy/issues/622/report-omit-overwrites-run-omit
.. _issue 627: https://bitbucket.org/ned/coveragepy/issues/627/failure-generating-html-reports-when-the
.. _issue 629: https://bitbucket.org/ned/coveragepy/issues/629/multiple-use-of-combine-leads-to-empty
.. _issue 631: https://bitbucket.org/ned/coveragepy/issues/631/precise-coverage-percentage-value

.. _changes_442:

Sphinx 1.6.5 -> 1.7.1

1.7.1

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

Deprecated

  • 4623: sphinx.build_main() is deprecated. Use
    sphinx.cmd.build.build_main() instead.
  • autosummary: The interface of sphinx.ext.autosummary.get_documenter() has
    been changed (Since 1.7.0)
  • 4664: sphinx.ext.intersphinx.debug() is deprecated. Use
    sphinx.ext.intersphinx.inspect_main() instead.

Bugs fixed

  • 4608: epub: Invalid meta tag is generated
  • 4260: autodoc: keyword only argument separator is not disappeared if it is
    appeared at top of the argument list
  • 4622: epub: :confval:epub_scheme does not effect to content.opf
  • 4627: graphviz: Fit graphviz images to page
  • 4617: quickstart: PROJECT_DIR argument is required
  • 4623: sphinx.build_main no longer exists in 1.7.0
  • 4615: The argument of sphinx.build has been changed in 1.7.0
  • autosummary: The interface of sphinx.ext.autosummary.get_documenter() has
    been changed
  • 4630: Have order on msgids in sphinx.pot deterministic
  • 4563: autosummary: Incorrect end of line punctuation detection
  • 4577: Enumerated sublists with explicit start with wrong number
  • 4641: A external link in TOC cannot contain "?" with :glob: option
  • C++, add missing parsing of explicit casts and typeid in expression parsing.
  • C++, add missing parsing of this in expression parsing.
  • 4655: Fix incomplete localization strings in Polish
  • 4653: Fix error reporting for parameterless ImportErrors
  • 4664: Reading objects.inv fails again
  • 4662: any refs with term targets crash when an ambiguity is
    encountered

1.7.0

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

Dependencies

1.7.0b3

  • 4019: inheritance_diagram AttributeError stoping make process
  • 4531: autosummary: methods are not treated as attributes
  • 4538: autodoc: sphinx.ext.autodoc.Options has been moved
  • 4539: autodoc emits warnings for partialmethods
  • 4223: doctest: failing tests reported in wrong file, at wrong line
  • i18n: message catalogs are not compiled if specific filenames are given for
    sphinx-build as arguments (refs: 4560)
  • 4027: sphinx.ext.autosectionlabel now expects labels to be the same as they
    are in the raw source; no smart quotes, nothig fancy.
  • 4581: apidoc: Excluded modules still included

Testing

1.7.0b2

  • 4415: autodoc classifies inherited classmethods as regular methods
  • 4415: autodoc classifies inherited staticmethods as regular methods
  • 4472: DOCUMENTATION_OPTIONS is not defined
  • 4491: autodoc: prefer _MockImporter over other importers in sys.meta_path
  • 4490: autodoc: type annotation is broken with python 3.7.0a4+
  • utils package is no longer installed
  • 3952: apidoc: module header is too escaped
  • 4275: Formats accepted by sphinx.util.i18n.format_date are limited
  • 4493: recommonmark raises AttributeError if AutoStructify enabled
  • 4209: intersphinx: In link title, "v" should be optional if target has no
    version
  • 4230: slowdown in writing pages with sphinx 1.6
  • 4522: epub: document is not rebuilt even if config changed

1.7.0b1

  • Add support for docutils 0.14
  • Add tests for the sphinx.ext.inheritance_diagram extension.

1.6.7

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

Bugs fixed

  • 1922: html search: Upper characters problem in French
  • 4412: Updated jQuery version from 3.1.0 to 3.2.1
  • 4438: math: math with labels with whitespace cause html error
  • 2437: make full reference for classes, aliased with "alias of"
  • 4434: pure numbers as link targets produce warning
  • 4477: Build fails after building specific files
  • 4449: apidoc: include "empty" packages that contain modules
  • 3917: citation labels are tranformed to ellipsis
  • 4501: graphviz: epub3 validation error caused if graph is not clickable
  • 4514: graphviz: workaround for wrong map ID which graphviz generates
  • 4525: autosectionlabel does not support parallel build
  • 3953: Do not raise warning when there is a working intersphinx inventory
  • 4487: math: ValueError is raised on parallel build. Thanks to jschueller.
  • 2372: autosummary: invalid signatures are shown for type annotated functions
  • 3942: html: table is not aligned to center even if :align: center

1.6.6

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

Features added

  • 4181: autodoc: Sort dictionary keys when possible
  • VerbatimHighlightColor is a new
    :ref:LaTeX 'sphinxsetup' <latexsphinxsetup> key (refs: 4285)
  • Easier customizability of LaTeX macros involved in rendering of code-blocks
  • Show traceback if conf.py raises an exception (refs: 4369)
  • Add :confval:smartquotes to disable smart quotes through conf.py
    (refs: 3967)
  • Add :confval:smartquotes_action and :confval:smartquotes_excludes
    (refs: 4142, 4357)

Bugs fixed

  • 4334: sphinx-apidoc: Don't generate references to non-existing files in TOC
  • 4206: latex: reST label between paragraphs loses paragraph break
  • 4231: html: Apply fixFirefoxAnchorBug only under Firefox
  • 4221: napoleon depends on autodoc, but users need to load it manually
  • 2298: automodule fails to document a class attribute
  • 4099: C++: properly link class reference to class from inside constructor
  • 4267: PDF build broken by Unicode U+2116 NUMERO SIGN character
  • 4249: PDF output: Pygments error highlighting increases line spacing in
    code blocks
  • 1238: Support :emphasize-lines: in PDF output
  • 4279: Sphinx crashes with pickling error when run with multiple processes and
    remote image
  • 1421: Respect the quiet flag in sphinx-quickstart
  • 4281: Race conditions when creating output directory
  • 4315: For PDF 'howto' documents, latex_toplevel_sectioning='part' generates
    \chapter commands
  • 4214: Two todolist directives break sphinx-1.6.5
  • Fix links to external option docs with intersphinx (refs: 3769)
  • 4091: Private members not documented without :undoc-members:

texttable 1.1.1 -> 1.2.1

1.2.1

Use test_cjkwrap only when cjkwrap is available (foutaise/texttable#35)

1.2.0

Use cjkwrap for better CJK text support (foutaise/texttable#34)

tqdm 4.19.5 -> 4.19.6

4.19.6

  • CLI improvements
    • --bytes implies --unit B --unit_scale --unit_divisor 1024 (503)
    • allow hyphens in CLI arguments (511)
  • synchronisation: fix for sem_open on aarch64 (513)
  • framework update
    • CI/tests, year 2018, py37, badges, documentation

That's it for now!

Happy merging! 🤖

@pyup-bot
Copy link
Contributor Author

pyup-bot commented Apr 1, 2018

Closing this in favor of #10

@pyup-bot pyup-bot closed this Apr 1, 2018
@kgarun kgarun deleted the pyup-scheduled-update-2018-03-01 branch April 1, 2018 15:36
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant