Skip to content

Commit

Permalink
release 16.7.6
Browse files Browse the repository at this point in the history
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
  • Loading branch information
gaborbernat committed Oct 16, 2019
1 parent 51cf4b6 commit bae32ad
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -9,7 +9,7 @@ repos:
rev: v1.3.0
hooks:
- id: blacken-docs
additional_dependencies: [black==18.9b0]
additional_dependencies: [black==19.3b0]
language_version: python3.7
- repo: https://github.com/asottile/seed-isort-config
rev: v1.9.3
Expand Down
1 change: 0 additions & 1 deletion docs/changelog/1402.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/changelog/1428.bugfix.rst

This file was deleted.

10 changes: 10 additions & 0 deletions docs/changes.rst
Expand Up @@ -5,6 +5,16 @@ Release History

.. towncrier release notes start
v16.7.6 (2019-10-16)
--------------------

Bugfixes
^^^^^^^^

- fix to support for Python 3 on MacOS 10.15 provided by Xcode (`#1402 <https://github.com/pypa/virtualenv/issues/1402>`_)
- bump bundled pip from ``19.2.3`` to ``19.3`` and setuptools from ``41.2.0`` to ``41.4.0`` (`#1428 <https://github.com/pypa/virtualenv/issues/1428>`_)


v16.7.5 (2019-09-03)
--------------------

Expand Down
12 changes: 6 additions & 6 deletions virtualenv.py
Expand Up @@ -1264,7 +1264,7 @@ def change_prefix(filename, dst_prefix):
assert relative_path[0] == os.sep
relative_path = relative_path[1:]
return join(dst_prefix, relative_path)
assert False, "Filename {} does not start with any of these prefixes: {}".format(filename, prefixes)
raise AssertionError("Filename {} does not start with any of these prefixes: {}".format(filename, prefixes))


def find_module_filename(modname):
Expand Down Expand Up @@ -2379,10 +2379,10 @@ def convert(s):
# file deactivate.bat
DEACTIVATE_BAT = convert(
"""
eJyFkN0KgkAUhO8X9h0GQapXCIQEDQX/EBO6kso1F9KN3Or1201Si6JzN+fMGT5mxQ61gKgqSijp
mETup9nGDgo3yi29S90QjmhnEteOYb6AFNjdBC9xvoj9iTUd7lzWkDVrwFuYiZ15JiW8QiskSlbx
lpUo4sApXtlJGodJhqNQWW7k+Ou831ACNZrC6BeW+eXPNEbfl7OiXr6H/oHZZl4ceXHoToG0nuIM
pk+k4fAba/wd0Pr4P2CqyLeOlJ4iKfkJo6v/iaH9YzfPMEoeMG2RUA==
eJyFkN0KgkAUhO8F32EQpHqFQEjQUPAPMaErqVxzId3IrV6/3ST/UDp3c86c4WN25FIysKJQFVVp
CEfqxsnB9DI7SA25i20fFqtXHM+GYL0BZzi9GM1xf7DzjVQN3pSX4CWpQGvokZk4uqrQAjXjyElB
a5IjCz0r+2VHcehHCa5MZNmB5e7TdqMqECMptHZh6DN/utb7Zs6CejsO/QNzTJwwcELfHgJJPcTp
TFOk7rCM1f92aG38HzBR5KgjoYdIQk5hZPWLGNLfd/MN+wANyJE5
"""
)

Expand Down Expand Up @@ -2491,7 +2491,7 @@ def convert(s):
BIG_ENDIAN = ">"
LITTLE_ENDIAN = "<"
LC_LOAD_DYLIB = 0xC
maxint = MAJOR == 3 and getattr(sys, "maxsize") or getattr(sys, "maxint")
maxint = getattr(sys, "maxsize", getattr(sys, "maxint", None))


class FileView(object):
Expand Down
Binary file not shown.

0 comments on commit bae32ad

Please sign in to comment.