From 7d5a3bfd55c7c9de71af877e773dce4554cf455b Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 21 Jan 2019 12:24:02 -0600 Subject: Hypothetically fixes pyOpenSSL tests (#805) * fix openssl CLI testing for 1.1.1 * various 1.1.1 related fixes some of which are just admitting TLS 1.3 is fundamentally different and pinning the tests to TLS 1.2 * flake8 fixes * allow travis_infra env var through * fix twisted --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 3728795..5387d2a 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ LONG = ( read_file("README.rst") + "\n\n" + "Release Information\n" + "===================\n\n" + - re.search("(\d{2}.\d.\d \(.*?\)\n.*?)\n\n\n----\n", + re.search(r"(\d{2}.\d.\d \(.*?\)\n.*?)\n\n\n----\n", read_file("CHANGELOG.rst"), re.S).group(1) + "\n\n`Full changelog " + "<{uri}en/stable/changelog.html>`_.\n\n" -- cgit v1.2.1