aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorElvis Pranskevichus <elvis@edgedb.com>2021-08-06 18:19:23 -0700
committerGitHub <noreply@github.com>2021-08-06 18:19:23 -0700
commit189b959d2e5f09660508482398414e2869c074ff (patch)
tree6497a6619384ee204f30d05c9ee6d3393fc96e8c /README.rst
parentfa355239e70411179c70b16ed4ff7113d8008dad (diff)
downloadimmutables-189b959d2e5f09660508482398414e2869c074ff.tar.gz
immutables-189b959d2e5f09660508482398414e2869c074ff.zip
Drop Python 3.5 support declaration, add Python 3.10 (#71)
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 4132bc0..e14d321 100644
--- a/README.rst
+++ b/README.rst
@@ -12,7 +12,7 @@ An immutable mapping type for Python.
The underlying datastructure is a Hash Array Mapped Trie (HAMT)
used in Clojure, Scala, Haskell, and other functional languages.
This implementation is used in CPython 3.7 in the ``contextvars``
-module (see `PEP 550 <https://www.python.org/dev/peps/pep-0550/>`_ and
+module (see `PEP 550 <https://www.python.org/dev/peps/pep-0550/>`_ and
`PEP 567 <https://www.python.org/dev/peps/pep-0567/>`_ for more details).
Immutable mappings based on HAMT have O(log N) performance for both
@@ -30,7 +30,7 @@ copy-on-write approach (the benchmark code is available
Installation
------------
-``immutables`` requires Python 3.5+ and is available on PyPI::
+``immutables`` requires Python 3.6+ and is available on PyPI::
$ pip install immutables