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

Scheduled monthly dependency update for March #101

Closed
wants to merge 17 commits into from

Conversation

pyup-bot
Copy link
Collaborator

@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.

cffi 1.11.4 » 1.11.5 PyPI | Changelog | Docs
libsass 0.13.6 » 0.13.7 PyPI | Changelog | Repo
multidict 4.0.0 » 4.1.0 PyPI | Changelog | Repo
aiohttp 2.3.9 » 3.0.5 PyPI | Changelog | Repo
aiohttp-jinja2 0.14.0 » 0.16.0 PyPI | Changelog | Repo
aioredis 1.0.0 » 1.1.0 PyPI | Changelog | Repo
msgpack-python 0.5.1 » 0.5.5 PyPI | Homepage
phonenumbers 8.8.9 » 8.9.0 PyPI | Changelog | Repo
pydantic 0.6.3 » 0.7.1 PyPI | Changelog | Repo
pytz 2017.3 » 2018.3 PyPI | Homepage | Docs
raven 6.5.0 » 6.6.0 PyPI | Changelog | Repo
aiohttp-devtools 0.7 » 0.8 PyPI | Changelog | Repo
coverage 4.4.2 » 4.5.1 PyPI | Changelog | Repo
isort 4.2.15 » 4.3.4 PyPI | Changelog | Repo
pytest 3.3.2 » 3.4.1 PyPI | Changelog | Repo | Homepage
pytest-mock 1.6.3 » 1.7.1 PyPI | Changelog | Repo
pytest-sugar 0.9.0 » 0.9.1 PyPI | Changelog | Homepage

Changelogs

cffi 1.11.4 -> 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/

libsass 0.13.6 -> 0.13.7

0.13.7


Released on February 5, 2018.

  • Follow up the libsass upstream: 3.4.9 --- See the release notes of Libsass
    3.4.9__. [:issue:232 by Anthony Sottile]

multidict 4.0.0 -> 4.1.0

4.1.0


  • Fix key casing in Pure Python impmenetation of
    :py:class:CIMultiDict (:pr:202)

aiohttp 2.3.9 -> 3.0.5

3.0.5

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

  • Fix InvalidStateError on processing a sequence of two
    RequestHandler.data_received calls on web server. (2773)

3.0.4

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

  • Fix IndexError in HTTP request handling by server. (2752)
  • Fix MultipartWriter.append* no longer returning part/payload. (2759)

3.0.3

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

  • Relax attrs dependency to minimal actually supported version
    17.0.3 The change allows to avoid version conflicts with currently
    existing test tools.

3.0.2

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

Security Fix

  • Prevent Windows absolute URLs in static files. Paths like
    /static/D:\path and /static/\\hostname\drive\path are
    forbidden.

3.0.1

=====

  • Technical release for fixing distribution problems.

3.0.0

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

Features

  • Speed up the PayloadWriter.write method for large request bodies. (2126)
  • StreamResponse and Response are now MutableMappings. (2246)
  • ClientSession publishes a set of signals to track the HTTP request execution.
    (2313)
  • Content-Disposition fast access in ClientResponse (2455)
  • Added support to Flask-style decorators with class-based Views. (2472)
  • Signal handlers (registered callbacks) should be coroutines. (2480)
  • Support async with test_client.ws_connect(...) (2525)
  • Introduce site and application runner as underlying API for web.run_app
    implementation. (2530)
  • Only quote multipart boundary when necessary and sanitize input (2544)
  • Make the aiohttp.ClientResponse.get_encoding method public with the
    processing of invalid charset while detecting content encoding. (2549)
  • Add optional configurable per message compression for
    ClientWebSocketResponse and WebSocketResponse. (2551)
  • Add hysteresis to StreamReader to prevent flipping between paused and
    resumed states too often. (2555)
  • Support .netrc by trust_env (2581)
  • Avoid to create a new resource when adding a route with the same name and
    path of the last added resource (2586)
  • MultipartWriter.boundary is str now. (2589)
  • Allow a custom port to be used by TestServer (and associated pytest
    fixtures) (2613)
  • Add param access_log_class to web.run_app function (2615)
  • Add ssl parameter to client API (2626)
  • Fixes performance issue introduced by 2577. When there are no middlewares
    installed by the user, no additional and useless code is executed. (2629)
  • Rename PayloadWriter to StreamWriter (2654)
  • New options reuse_port, reuse_address are added to run_app and
    TCPSite. (2679)
  • Use custom classes to pass client signals parameters (2686)
  • Use attrs library for data classes, replace namedtuple. (2690)
  • Pytest fixtures renaming, add aiohttp_ prefix (2578)
  • Add aiohttp- prefix for pytest-aiohttp command line
    parameters (2578)

Bugfixes

  • Correctly process upgrade request from server to HTTP2. aiohttp does not
    support HTTP2 yet, the protocol is not upgraded but response is handled
    correctly. (2277)
  • Fix ClientConnectorSSLError and ClientProxyConnectionError for proxy
    connector (2408)
  • Fix connector convert OSError to ClientConnectorError (2423)
  • Fix connection attempts for multiple dns hosts (2424)
  • Fix writing to closed transport by raising asyncio.CancelledError (2499)
  • Fix warning in ClientSession.__del__ by stopping to try to close it.
    (2523)
  • Fixed race-condition for iterating addresses from the DNSCache. (2620)
  • Fix default value of access_log_format argument in web.run_app (2649)
  • Freeze sub-application on adding to parent app (2656)
  • Do percent encoding for .url_for() parameters (2668)
  • Correctly process request start time and multiple request/response
    headers in access log extra (2641)

Improved Documentation

  • Improve tutorial docs, using literalinclude to link to the actual files.
    (2396)
  • Small improvement docs: better example for file uploads. (2401)
  • Rename from_env to trust_env in client reference. (2451)
  • Fixed mistype in Proxy Support section where trust_env parameter was
    used in session.get("http://python.org", trust_env=True) method instead of
    aiohttp.ClientSession constructor as follows:
    aiohttp.ClientSession(trust_env=True). (2688)
  • Fix issue with unittest example not compiling in testing docs. (2717)

Deprecations and Removals

  • Simplify HTTP pipelining implementation (2109)
  • Drop StreamReaderPayload and DataQueuePayload. (2257)
  • Drop md5 and sha1 finger-prints (2267)
  • Drop WSMessage.tp (2321)
  • Drop Python 3.4 and Python 3.5.0, 3.5.1, 3.5.2. Minimal supported Python
    versions are 3.5.3 and 3.6.0. yield from is gone, use async/await syntax.
    (2343)
  • Drop aiohttp.Timeout and use async_timeout.timeout instead. (2348)
  • Drop resolve param from TCPConnector. (2377)
  • Add DeprecationWarning for returning HTTPException (2415)
  • send_str(), send_bytes(), send_json(), ping() and pong() are
    genuine async functions now. (2475)
  • Drop undocumented app.on_pre_signal and app.on_post_signal. Signal
    handlers should be coroutines, support for regular functions is dropped.
    (2480)
  • StreamResponse.drain() is not a part of public API anymore, just use await StreamResponse.write(). StreamResponse.write is converted to async
    function. (2483)
  • Drop deprecated slow_request_timeout param and **kwargs`` from RequestHandler`. (2500)
  • Drop deprecated resource.url(). (2501)
  • Remove %u and %l format specifiers from access log format. (2506)
  • Drop deprecated request.GET property. (2547)
  • Simplify stream classes: drop ChunksQueue and FlowControlChunksQueue,
    merge FlowControlStreamReader functionality into StreamReader, drop
    FlowControlStreamReader name. (2555)
  • Do not create a new resource on router.add_get(..., allow_head=True)
    (2585)
  • Drop access to TCP tuning options from PayloadWriter and Response classes
    (2604)
  • Drop deprecated encoding parameter from client API (2606)
  • Deprecate verify_ssl, ssl_context and fingerprint parameters in
    client API (2626)
  • Get rid of the legacy class StreamWriter. (2651)
  • Forbid non-strings in resource.url_for() parameters. (2668)
  • Deprecate inheritance from ClientSession and web.Application and
    custom user attributes for ClientSession, web.Request and
    web.Application (2691)
  • Drop resp = await aiohttp.request(...) syntax for sake of async with aiohttp.request(...) as resp:. (2540)
  • Forbid synchronous context managers for ClientSession and test
    server/client. (2362)

Misc

  • 2552

2.3.10

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

  • Fix 100% CPU usage on HTTP GET and websocket connection just after it (1955)
  • Patch broken ssl.match_hostname() on Python<3.7 (2674)

aiohttp-jinja2 0.14.0 -> 0.16.0

0.16.0


  • Pin to aiohttp 3.0+
  • Deprecate non-async handlers support

0.15.0


  • Upgrade middleware to new style from aiohttp 2.3+ 182
  • Autoescape all templates by default 179

aioredis 1.0.0 -> 1.1.0

1.1.0

^^^^^^^^^^^^^^^^^^

NEW:

  • Implement new commands: wait, touch, swapdb, unlink
    (see 376 &lt;https://github.com/aio-libs/aioredis/pull/376&gt;_);
  • Add async_op argument to flushall and flushdb commands
    (see 364 &lt;https://github.com/aio-libs/aioredis/pull/364&gt;,
    and 370 &lt;https://github.com/aio-libs/aioredis/pull/370&gt;
    );

FIX:

  • Important! Fix Sentinel sentinel client with pool minsize
    greater than 1
    (see 380 &lt;https://github.com/aio-libs/aioredis/pull/380&gt;_);
  • Fix SentinelPool.discover_timeout usage
    (see 379 &lt;https://github.com/aio-libs/aioredis/pull/379&gt;_);
  • Fix Receiver hang on disconnect
    (see 354 &lt;https://github.com/aio-libs/aioredis/pull/354&gt;,
    and 366 &lt;https://github.com/aio-libs/aioredis/pull/366&gt;
    );
  • Fix an issue with subscribe/psubscribe with empty pool
    (see 351 &lt;https://github.com/aio-libs/aioredis/pull/351&gt;,
    and 355 &lt;https://github.com/aio-libs/aioredis/pull/355&gt;
    );
  • Fix an issue when StreamReader's feed_data is called before set_parser
    (see 347 &lt;https://github.com/aio-libs/aioredis/pull/347&gt;_);

MISC:

  • Update dependencies versions;
  • Multiple test fixes;

pydantic 0.6.3 -> 0.7.1

0.7.1

...................

  • fix bug with create_model modifying the base class

0.7.0

...................

  • added compatibility with abstract base classes (ABCs) 123
  • add create_model method 113 125
  • breaking change: rename .config to .__config__ on a model
  • breaking change: remove deprecated .values() on a model, use .dict() instead
  • remove use of OrderedDict and use simple dict 126
  • add Config.use_enum_values 127
  • add wildcard validators of the form validate(&#39;*&#39;) 128

0.6.4

...................

  • allow python date and times objects 122

raven 6.5.0 -> 6.6.0

6.6.0


  • [Core] Add trimming to breadcrumbs.
  • [Core] Improve host message at startup.
  • [Core] Update pytest to work on other environments

aiohttp-devtools 0.7 -> 0.8

0.8.0


  • complete rewrite for aiohttp >= 3 stop using multiprocessing 173
  • update required packages 171

0.7.1


  • set Access-Control-Allow-Origin for static files, 169

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:

isort 4.2.15 -> 4.3.4

4.3.4

  • Fixed issue 671: isort is corrupting CRLF files

4.3.3

  • Fixed issue 665: Tabs turned into single spaces

4.3.2

  • Fixed issue 651: Add imports option is broken
  • Fixed issue 662: An error generated by rewriting .imports to . imoprts

4.3.1

  • Fixed setup.py errors
  • Fixed issue 654: Trailing comma count error
  • Fixed issue 650: Wrong error message displayed

4.3.0

  • Fixed 557: force_alphabetical_sort and force_sort_within_sections can now be utilized together without extra new lines
  • Fix case-sensitive path existence check in Mac OS X
  • Added --no-lines-before for more granular control over section output
  • Fixed 493: Unwanted conversion to Windows line endings
  • Fixed 590: Import as mucks with alphabetical sorting
  • Implemented --version-number to retrieve just the version number without the isort logo
  • Breaking changes
    • Python 2.7+ only (dropped 2.6) allowing various code simplifications and improvements.

pytest 3.3.2 -> 3.4.1

3.4.1

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

Bug Fixes

  • Move import of doctest.UnexpectedException to top-level to avoid possible
    errors when using --pdb. (1810 &lt;https://github.com/pytest-dev/pytest/issues/1810&gt;_)
  • Added printing of captured stdout/stderr before entering pdb, and improved a
    test which was giving false negatives about output capturing. (3052 &lt;https://github.com/pytest-dev/pytest/issues/3052&gt;_)
  • Fix ordering of tests using parametrized fixtures which can lead to fixtures
    being created more than necessary. (3161 &lt;https://github.com/pytest-dev/pytest/issues/3161&gt;_)
  • Fix bug where logging happening at hooks outside of "test run" hooks would
    cause an internal error. (3184 &lt;https://github.com/pytest-dev/pytest/issues/3184&gt;_)
  • Detect arguments injected by unittest.mock.patch decorator correctly when
    pypi mock.patch is installed and imported. (3206 &lt;https://github.com/pytest-dev/pytest/issues/3206&gt;_)
  • Errors shown when a pytest.raises() with match= fails are now cleaner
    on what happened: When no exception was raised, the "matching '...'" part got
    removed as it falsely implies that an exception was raised but it didn't
    match. When a wrong exception was raised, it's now thrown (like
    pytest.raised() without match= would) instead of complaining about
    the unmatched text. (3222 &lt;https://github.com/pytest-dev/pytest/issues/3222&gt;_)
  • Fixed output capture handling in doctests on macOS. (985 &lt;https://github.com/pytest-dev/pytest/issues/985&gt;_)

Improved Documentation

  • Add Sphinx parameter docs for match and message args to
    pytest.raises. (3202 &lt;https://github.com/pytest-dev/pytest/issues/3202&gt;_)

Trivial/Internal Changes

  • pytest has changed the publication procedure and is now being published to
    PyPI directly from Travis. (3060 &lt;https://github.com/pytest-dev/pytest/issues/3060&gt;_)
  • Rename ParameterSet._for_parameterize() to _for_parametrize() in
    order to comply with the naming convention. (3166 &lt;https://github.com/pytest-dev/pytest/issues/3166&gt;_)
  • Skip failing pdb/doctest test on mac. (985 &lt;https://github.com/pytest-dev/pytest/issues/985&gt;_)

3.4.0

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

Deprecations and Removals

  • All pytest classes now subclass object for better Python 2/3 compatibility.
    This should not affect user code except in very rare edge cases. (2147 &lt;https://github.com/pytest-dev/pytest/issues/2147&gt;_)

Features

  • Introduce empty_parameter_set_mark ini option to select which mark to
    apply when pytest.mark.parametrize is given an empty set of parameters.
    Valid options are skip (default) and xfail. Note that it is planned
    to change the default to xfail in future releases as this is considered
    less error prone. (2527 &lt;https://github.com/pytest-dev/pytest/issues/2527&gt;_)
  • Incompatible change: after community feedback the logging &lt;https://docs.pytest.org/en/latest/logging.html&gt;_ functionality has
    undergone some changes. Please consult the logging documentation &lt;https://docs.pytest.org/en/latest/logging.htmlincompatible-changes-in-pytest-3-4&gt;_
    for details. (3013 &lt;https://github.com/pytest-dev/pytest/issues/3013&gt;_)
  • Console output falls back to "classic" mode when capturing is disabled (-s),
    otherwise the output gets garbled to the point of being useless. (3038 &lt;https://github.com/pytest-dev/pytest/issues/3038&gt;_)
  • New pytest_runtest_logfinish &lt;https://docs.pytest.org/en/latest/writing_plugins.html_pytest.hookspec.pytest_runtest_logfinish&gt;_
    hook which is called when a test item has finished executing, analogous to
    pytest_runtest_logstart &lt;https://docs.pytest.org/en/latest/writing_plugins.html_pytest.hookspec.pytest_runtest_start&gt;.
    (3101 &lt;https://github.com/pytest-dev/pytest/issues/3101&gt;
    )
  • Improve performance when collecting tests using many fixtures. (3107 &lt;https://github.com/pytest-dev/pytest/issues/3107&gt;_)
  • New caplog.get_records(when) method which provides access to the captured
    records for the &quot;setup&quot;, &quot;call&quot; and &quot;teardown&quot;
    testing stages. (3117 &lt;https://github.com/pytest-dev/pytest/issues/3117&gt;_)
  • New fixture record_xml_attribute that allows modifying and inserting
    attributes on the &lt;testcase&gt; xml node in JUnit reports. (3130 &lt;https://github.com/pytest-dev/pytest/issues/3130&gt;_)
  • The default cache directory has been renamed from .cache to
    .pytest_cache after community feedback that the name .cache did not
    make it clear that it was used by pytest. (3138 &lt;https://github.com/pytest-dev/pytest/issues/3138&gt;_)
  • Colorize the levelname column in the live-log output. (3142 &lt;https://github.com/pytest-dev/pytest/issues/3142&gt;_)

Bug Fixes

  • Fix hanging pexpect test on MacOS by using flush() instead of wait().
    (2022 &lt;https://github.com/pytest-dev/pytest/issues/2022&gt;_)
  • Fix restoring Python state after in-process pytest runs with the
    pytester plugin; this may break tests using multiple inprocess
    pytest runs if later ones depend on earlier ones leaking global interpreter
    changes. (3016 &lt;https://github.com/pytest-dev/pytest/issues/3016&gt;_)
  • Fix skipping plugin reporting hook when test aborted before plugin setup
    hook. (3074 &lt;https://github.com/pytest-dev/pytest/issues/3074&gt;_)
  • Fix progress percentage reported when tests fail during teardown. (3088 &lt;https://github.com/pytest-dev/pytest/issues/3088&gt;_)
  • Incompatible change: -o/--override option no longer eats all the
    remaining options, which can lead to surprising behavior: for example,
    pytest -o foo=1 /path/to/test.py would fail because /path/to/test.py
    would be considered as part of the -o command-line argument. One
    consequence of this is that now multiple configuration overrides need
    multiple -o flags: pytest -o foo=1 -o bar=2. (3103 &lt;https://github.com/pytest-dev/pytest/issues/3103&gt;_)

Improved Documentation

  • Document hooks (defined with historic=True) which cannot be used with
    hookwrapper=True. (2423 &lt;https://github.com/pytest-dev/pytest/issues/2423&gt;_)
  • Clarify that warning capturing doesn't change the warning filter by default.
    (2457 &lt;https://github.com/pytest-dev/pytest/issues/2457&gt;_)
  • Clarify a possible confusion when using pytest_fixture_setup with fixture
    functions that return None. (2698 &lt;https://github.com/pytest-dev/pytest/issues/2698&gt;_)
  • Fix the wording of a sentence on doctest flags used in pytest. (3076 &lt;https://github.com/pytest-dev/pytest/issues/3076&gt;_)
  • Prefer https://*.readthedocs.io over http://*.rtfd.org for links in
    the documentation. (3092 &lt;https://github.com/pytest-dev/pytest/issues/3092&gt;_)
  • Improve readability (wording, grammar) of Getting Started guide (3131 &lt;https://github.com/pytest-dev/pytest/issues/3131&gt;_)
  • Added note that calling pytest.main multiple times from the same process is
    not recommended because of import caching. (3143 &lt;https://github.com/pytest-dev/pytest/issues/3143&gt;_)

Trivial/Internal Changes

  • Show a simple and easy error when keyword expressions trigger a syntax error
    (for example, &quot;-k foo and import&quot; will show an error that you can not use
    the import keyword in expressions). (2953 &lt;https://github.com/pytest-dev/pytest/issues/2953&gt;_)
  • Change parametrized automatic test id generation to use the __name__
    attribute of functions instead of the fallback argument name plus counter.
    (2976 &lt;https://github.com/pytest-dev/pytest/issues/2976&gt;_)
  • Replace py.std with stdlib imports. (3067 &lt;https://github.com/pytest-dev/pytest/issues/3067&gt;_)
  • Corrected 'you' to 'your' in logging docs. (3129 &lt;https://github.com/pytest-dev/pytest/issues/3129&gt;_)

pytest-mock 1.6.3 -> 1.7.1

1.7.1


  • Fix setup.py to correctly read the README.rst. Thanks ghisvail_ for the fix (107_).

.. _107: pytest-dev/pytest-mock#107

1.7.0


Incompatible change

  • pytest-mock no longer supports Python 2.6 and Python 3.3, following the lead of
    pytest and other projects in the community. Thanks hugovk_ for the PR (96_).

Packaging

  • Fix mock requirement in Python 2. Thanks ghisvail_ for the report (101_).

Internal

  • Some tests in pytest-mock's suite are skipped if assertion rewriting is disabled (102_).

.. _ghisvail: https://github.com/ghisvail
.. _hugovk: https://github.com/hugovk
.. _96: pytest-dev/pytest-mock#96
.. _101: pytest-dev/pytest-mock#101
.. _102: pytest-dev/pytest-mock#102

pytest-sugar 0.9.0 -> 0.9.1

0.9.1

^^^^^^^^^^^^^^^^^^^

  • Fix incompatibility with pytest 3.4 (thanks nicoddemus)

That's it for now!

Happy merging! 🤖

@pyup-bot
Copy link
Collaborator Author

pyup-bot commented Apr 1, 2018

Closing this in favor of #102

@pyup-bot pyup-bot closed this Apr 1, 2018
@samuelcolvin samuelcolvin deleted the pyup-scheduled-update-2018-03-01 branch April 1, 2018 16:38
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.

1 participant