Commit bb66a7c8 authored by Ricky Stewart's avatar Ricky Stewart
Browse files

Bug 1598417 - Update six to 1.13.0 r=firefox-build-system-reviewers,mshal

Differential Revision: https://phabricator.services.mozilla.com/D54806

--HG--
extra : moz-landing-system : lando
parent b224524d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ python-hglib==2.4
redo==2.0.3
requests==2.9.1
responses==0.10.6
six==1.10.0
six==1.13.0
taskcluster==6.0.0
taskcluster-urls==11.0.0
virtualenv==15.2.0
+3 −3
Original line number Diff line number Diff line
@@ -106,9 +106,9 @@ scandir==1.9.0 \
    --hash=sha256:c9009c527929f6e25604aec39b0a43c3f831d2947d89d6caaab22f057b7055c8 \
    --hash=sha256:f5c71e29b4e2af7ccdc03a020c626ede51da471173b4a6ad1e904f2b2e04b4bd \
    # via pathlib2
six==1.10.0 \
    --hash=sha256:0ff78c403d9bccf5a425a6d31a12aa6b47f1c21ca4dc2573a7e2f32a97335eb1 \
    --hash=sha256:105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a
six==1.13.0 \
    --hash=sha256:1f1b7d42e254082a9db6279deae68afb421ceba6158efa6131de7b3003ee93fd \
    --hash=sha256:30f610279e8b2578cab6db20741130331735c781b56053c59c4076da27f06b66
slugid==1.0.7 \
    --hash=sha256:6dab3c7eef0bb423fb54cb7752e0f466ddd0ee495b78b763be60e8a27f69e779 \
    # via taskcluster
+45 −0
Original line number Diff line number Diff line
@@ -3,6 +3,51 @@ Changelog for six

This file lists the changes in each six version.

1.13.0
------

- Issue #298, pull request #299: Add `six.moves.dbm_ndbm`.

- Issue #155: Add `six.moves.collections_abc`, which aliases the `collections`
  module on Python 2-3.2 and the `collections.abc` on Python 3.3 and greater.

- Pull request #304: Re-add distutils fallback in `setup.py`.

- Pull request #305: On Python 3.7, `with_metaclass` supports classes using PEP
  560 features.

1.12.0
------

- Issue #259, pull request #260: `six.add_metaclass` now preserves
  `__qualname__` from the original class.

- Pull request #204: Add `six.ensure_binary`, `six.ensure_text`, and
  `six.ensure_str`.

1.11.0
------

- Pull request #178: `with_metaclass` now properly proxies `__prepare__` to the
  underlying metaclass.

- Pull request #191: Allow `with_metaclass` to work with metaclasses implemented
  in C.

- Pull request #203: Add parse_http_list and parse_keqv_list to moved
  urllib.request.

- Pull request #172 and issue #171: Add unquote_to_bytes to moved urllib.parse.

- Pull request #167: Add `six.moves.getoutput`.

- Pull request #80: Add `six.moves.urllib_parse.splitvalue`.

- Pull request #75: Add `six.moves.email_mime_image`.

- Pull request #72: Avoid creating reference cycles through tracebacks in
  `reraise`.

1.10.0
------

+1 −1
Original line number Diff line number Diff line
Copyright (c) 2010-2015 Benjamin Peterson
Copyright (c) 2010-2019 Benjamin Peterson

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
+24 −6
Original line number Diff line number Diff line
Metadata-Version: 1.1
Metadata-Version: 1.2
Name: six
Version: 1.10.0
Version: 1.13.0
Summary: Python 2 and 3 compatibility utilities
Home-page: http://pypi.python.org/pypi/six/
Home-page: https://github.com/benjaminp/six
Author: Benjamin Peterson
Author-email: benjamin@python.org
License: MIT
Description: Six is a Python 2 and 3 compatibility library.  It provides utility functions
Description: .. image:: https://img.shields.io/pypi/v/six.svg
           :target: https://pypi.org/project/six/
           :alt: six on PyPI
        
        .. image:: https://travis-ci.org/benjaminp/six.svg?branch=master
           :target: https://travis-ci.org/benjaminp/six
           :alt: six on TravisCI
        
        .. image:: https://readthedocs.org/projects/six/badge/?version=latest
           :target: https://six.readthedocs.io/
           :alt: six's documentation on Read the Docs
        
        .. image:: https://img.shields.io/badge/license-MIT-green.svg
           :target: https://github.com/benjaminp/six/blob/master/LICENSE
           :alt: MIT License badge
        
        Six is a Python 2 and 3 compatibility library.  It provides utility functions
        for smoothing over the differences between the Python versions with the goal of
        writing Python code that is compatible on both Python versions.  See the
        documentation for more information on what is provided.
@@ -15,18 +31,20 @@ Description: Six is a Python 2 and 3 compatibility library. It provides utility
        file, so it can be easily copied into your project. (The copyright and license
        notice must be retained.)
        
        Online documentation is at https://pythonhosted.org/six/.
        Online documentation is at https://six.readthedocs.io/.
        
        Bugs can be reported to https://bitbucket.org/gutworth/six.  The code can also
        Bugs can be reported to https://github.com/benjaminp/six.  The code can also
        be found there.
        
        For questions about six or porting in general, email the python-porting mailing
        list: https://mail.python.org/mailman/listinfo/python-porting
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Python: >=2.6, !=3.0.*, !=3.1.*
Loading