From 33e9e3c49ba650349067c24cfb7a695bb13421ed Mon Sep 17 00:00:00 2001 From: Mike Wadsten Date: Thu, 11 Mar 2021 11:26:29 -0600 Subject: [PATCH] Add .gitattributes to force .rst files to LF line endings setup.py runs a regex which assumes LF line endings over the contents of CHANGELOG.rst. When installing pyopenssl from source (`pip install git+...`) on Windows, there's a good chance these files will be checked out with CRLF line endings today. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..a6321b21a --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.rst text eol=lf