From 7992fc197332d4c7f93f55403f077cdfd5df11a0 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Wed, 14 Oct 2020 23:25:16 +0800 Subject: [PATCH 1/2] Correct a typo in subj_alt_name.py --- ndg/httpsclient/subj_alt_name.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndg/httpsclient/subj_alt_name.py b/ndg/httpsclient/subj_alt_name.py index 7cc3f47..7c195aa 100644 --- a/ndg/httpsclient/subj_alt_name.py +++ b/ndg/httpsclient/subj_alt_name.py @@ -69,7 +69,7 @@ class AttributeTypeAndValue(univ.Sequence): class RelativeDistinguishedName(univ.SetOf): - '''ASN.1 Realtive distinguished name''' + '''ASN.1 Relative distinguished name''' componentType = AttributeTypeAndValue() class RDNSequence(univ.SequenceOf): From 4005b64a9d4bf5b60a99e11174c75e8c00400ee0 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 17 Mar 2021 20:04:55 +0100 Subject: [PATCH 2/2] Travis CI: Test on current versions of CPython --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6d7ba85..f0f7398 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,13 @@ language: python python: - 2.7 - - 3.4 - - 3.5 - 3.6 + - 3.7 + - 3.8 + - 3.9 - nightly script: - python setup.py install -matrix: +jobs: allow_failures: - python: nightly