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

release 16.7.6 #1429

Merged
merged 1 commit into from Oct 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
14 changes: 7 additions & 7 deletions virtualenv.py
Expand Up @@ -46,7 +46,7 @@
# noinspection PyPep8Naming
import configparser as ConfigParser

__version__ = "16.7.5"
__version__ = "16.7.6"
virtualenv_version = __version__ # legacy
DEBUG = os.environ.get("_VIRTUALENV_DEBUG", None) == "1"
if sys.version_info < (2, 7):
Expand Down 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.