From f814088b6ab5fe1287ccbf96f583fb12f8f09156 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Fri, 24 Apr 2020 13:59:49 -0700 Subject: [PATCH] Adjust python tested versions --- .travis.yml | 2 +- test/test.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 08302f9..37b6f37 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ language: python python: - - 2.7 - 3.4 - 3.5 - 3.6 + - 3.7 - nightly dist: trusty diff --git a/test/test.py b/test/test.py index ef48678..c7f0d25 100755 --- a/test/test.py +++ b/test/test.py @@ -86,7 +86,6 @@ class TestRequestsHTTPSignature(unittest.TestCase): headers = {"Date": date, "pubkey": pubkey_b64, "expectSig": expect_sig, "content-type": "application/json"} self.session.post(url, json=payload, headers=headers, auth=auth) - #def test_signature_scheme(self): auth = HTTPSignatureHeaderAuth(key=hmac_secret, key_id="sekret", headers=["(request-target)", "host", "date", "digest", "content-length"])