diff options
-rw-r--r-- | NEWS.rst | 19 | ||||
-rw-r--r-- | news/5134.bugfix | 1 | ||||
-rw-r--r-- | news/5140.bugfix | 1 | ||||
-rw-r--r-- | news/5141.bugfix | 1 | ||||
-rw-r--r-- | news/5150.bugfix | 1 | ||||
-rw-r--r-- | news/5157.bugfix | 3 | ||||
-rw-r--r-- | news/5188.bugfix | 1 | ||||
-rw-r--r-- | news/5203.bugfix | 1 |
8 files changed, 19 insertions, 9 deletions
@@ -8,6 +8,25 @@ .. towncrier release notes start +10.0.0 (2018-04-14) +=================== + +Bug Fixes +--------- + +- Prevent false-positive installation warnings due to incomplete name + normalizaton. (#5134) +- Fix issue where installing from Git with a short SHA would fail. (#5140) +- Accept pre-release versions when checking for conflicts with pip check or pip + install. (#5141) +- ``ioctl(fd, termios.TIOCGWINSZ, ...)`` needs 8 bytes of data (#5150) +- Do not warn about script location when installing to the directory containing + sys.executable. This is the case when 'pip install'ing without activating a + virtualenv. (#5157) +- Fix PEP 518 support. (#5188) +- Don't warn about script locations if ``--target`` is specified. (#5203) + + 10.0.0b2 (2018-04-02) ===================== diff --git a/news/5134.bugfix b/news/5134.bugfix deleted file mode 100644 index bec3b8872..000000000 --- a/news/5134.bugfix +++ /dev/null @@ -1 +0,0 @@ -Prevent false-positive installation warnings due to incomplete name normalizaton. diff --git a/news/5140.bugfix b/news/5140.bugfix deleted file mode 100644 index 7d29a377c..000000000 --- a/news/5140.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix issue where installing from Git with a short SHA would fail. diff --git a/news/5141.bugfix b/news/5141.bugfix deleted file mode 100644 index 69ab8b6f7..000000000 --- a/news/5141.bugfix +++ /dev/null @@ -1 +0,0 @@ -Accept pre-release versions when checking for conflicts with pip check or pip install. diff --git a/news/5150.bugfix b/news/5150.bugfix deleted file mode 100644 index c31467efb..000000000 --- a/news/5150.bugfix +++ /dev/null @@ -1 +0,0 @@ -``ioctl(fd, termios.TIOCGWINSZ, ...)`` needs 8 bytes of data diff --git a/news/5157.bugfix b/news/5157.bugfix deleted file mode 100644 index 1e44bdc0f..000000000 --- a/news/5157.bugfix +++ /dev/null @@ -1,3 +0,0 @@ -Do not warn about script location when installing to the directory containing -sys.executable. This is the case when 'pip install'ing without activating a -virtualenv. diff --git a/news/5188.bugfix b/news/5188.bugfix deleted file mode 100644 index 27325639e..000000000 --- a/news/5188.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix PEP 518 support. diff --git a/news/5203.bugfix b/news/5203.bugfix deleted file mode 100644 index 829d358c3..000000000 --- a/news/5203.bugfix +++ /dev/null @@ -1 +0,0 @@ -Don't warn about script locations if ``--target`` is specified. |