From 18f6b2059164c003518e34adea1847c2d47e3271 Mon Sep 17 00:00:00 2001 From: Donald Stufft Date: Sat, 31 Mar 2018 13:45:15 -0400 Subject: [PATCH] The CA Bundle should always use Unix line endings --- .gitattributes | 2 ++ NEWS.rst | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index 9c9d2993c..2793a6c10 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,4 @@ # Patches must have Unix-style line endings, even on Windows tasks/vendoring/patches/* eol=lf +# The CA Bundle should always use Unix-style line endings, even on Windows +src/pip/_vendor/certifi/*.pem eol=lf diff --git a/NEWS.rst b/NEWS.rst index ac631ed01..c0f6fdfab 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -182,6 +182,8 @@ Bug Fixes - Abort if reading configuration causes encoding errors. (#4976) - Add a ``--no-user`` option and use it when installing build dependencies. (#5085) +- Fixed line endings in CA Bundle - 10.0.0b1 was inadvertently released with Windows + line endings. (#5131) Vendored Libraries ------------------