From dab69fd57cd86f47cdb8fea3aa436e17a10ced1f Mon Sep 17 00:00:00 2001 From: Ilan Schnell Date: Sun, 13 Jun 2021 16:41:14 -0500 Subject: [PATCH] update changelog - comment --- CHANGE_LOG | 2 ++ bitarray/__init__.pyi | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGE_LOG b/CHANGE_LOG index fa872480..1a22bd02 100644 --- a/CHANGE_LOG +++ b/CHANGE_LOG @@ -1,5 +1,7 @@ 2021-XX-XX 2.1.2: ------------------- + * support type hinting for all Python 3 versions (that bitarray supports, + i.e. 3.5 and higher currently), see #128 * add explicit endianness to two tests, fixes issue #127 diff --git a/bitarray/__init__.pyi b/bitarray/__init__.pyi index 63335c0e..1b12fea4 100644 --- a/bitarray/__init__.pyi +++ b/bitarray/__init__.pyi @@ -1,6 +1,6 @@ """ This stub, as well as util.pyi, have been tested with -Python 3.9 and mypy 0.902 +Python 3.5 .. 3.10 and mypy 0.902 """ from collections.abc import Iterable, Iterator from unittest.runner import TextTestResult