summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2019-08-23 10:20:57 +0100
committerGitHub <noreply@github.com>2019-08-23 10:20:57 +0100
commitbf804cac8bd5a66c78819e966cd2bbe2e1c132f4 (patch)
tree60c922a17f849b7fcf24a17eb52a0e1d0259ab7d
parent38c4b3a9b6e83dbdff9c6b9a58bbf28db201b750 (diff)
parent65cb1fe3b1aa68969bef168d64fd6f1c4a4c934d (diff)
downloadvirtualenv-bf804cac8bd5a66c78819e966cd2bbe2e1c132f4.tar.gz
release 16.7.4 (#1410)
release 16.7.4
-rw-r--r--docs/changelog/1398.bugfix.rst1
-rw-r--r--docs/changelog/1409.bugfix.rst1
-rw-r--r--docs/changes.rst10
-rw-r--r--tests/activation/test_activation.py1
4 files changed, 10 insertions, 3 deletions
diff --git a/docs/changelog/1398.bugfix.rst b/docs/changelog/1398.bugfix.rst
deleted file mode 100644
index 5d16b68..0000000
--- a/docs/changelog/1398.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-* fix powershell activation when sourced
diff --git a/docs/changelog/1409.bugfix.rst b/docs/changelog/1409.bugfix.rst
deleted file mode 100644
index c2de460..0000000
--- a/docs/changelog/1409.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-* upgrade wheel from ``0.33.4`` to ``0.33.6`` and setuptools from ``41.1.0`` to ``41.2.0``
diff --git a/docs/changes.rst b/docs/changes.rst
index 0255d1e..bdd6456 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -5,6 +5,16 @@ Release History
.. towncrier release notes start
+v16.7.4 (2019-08-23)
+--------------------
+
+Bugfixes
+^^^^^^^^
+
+- * fix powershell activation when sourced (`#1398 <https://github.com/pypa/virtualenv/issues/1398>`_)
+- * upgrade wheel from ``0.33.4`` to ``0.33.6`` and setuptools from ``41.1.0`` to ``41.2.0`` (`#1409 <https://github.com/pypa/virtualenv/issues/1409>`_)
+
+
v16.7.3 (2019-08-16)
--------------------
diff --git a/tests/activation/test_activation.py b/tests/activation/test_activation.py
index 397bc34..2b180b5 100644
--- a/tests/activation/test_activation.py
+++ b/tests/activation/test_activation.py
@@ -207,7 +207,6 @@ class PowershellActivation(Activation):
activate_script = "activate.ps1"
activate_cmd = "."
check = [cmd, "-c", "$PSVersionTable"]
- also_test_error_if_not_sourced = True
def quote(self, s):
"""powershell double double quote needed for quotes within single quotes"""