summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2019-11-22 15:47:49 -0500
committerEli Collins <elic@assurancetechnologies.com>2019-11-22 15:47:49 -0500
commit110c695c8a2e9d62a47338764789263f4130f3d8 (patch)
tree6c5e4970e8d232fc7d892b6c45f214b7d535705e /docs
parentb6b227b144dc638bd8e4fb9c220652da68e00cb8 (diff)
downloadpasslib-110c695c8a2e9d62a47338764789263f4130f3d8.tar.gz
general: Python 2.6 & 3.3 support deprecated -- added notes in docs
Diffstat (limited to 'docs')
-rw-r--r--docs/history/1.7.rst13
-rw-r--r--docs/install.rst9
2 files changed, 21 insertions, 1 deletions
diff --git a/docs/history/1.7.rst b/docs/history/1.7.rst
index 7027f18..f5452dc 100644
--- a/docs/history/1.7.rst
+++ b/docs/history/1.7.rst
@@ -46,6 +46,19 @@ Bugfixes
* **unittests**: ``crypt()`` unittests now account for linux systems running libxcrypt
(such as recent Fedora releases)
+Deprecations
+------------
+
+.. rst-class:: float-center
+
+.. warning::
+
+ Due to lack of ``pip`` and ``venv`` support, Passlib is no longer fully tested on Python
+ 2.6 & 3.3. There are no known issues, and bugfixes against these versions will still be
+ accepted for the Passlib 1.7.x series.
+ However, **Passlib 1.8 will drop support for Python 2.6 & 3.3; and Passlib 2.0 will drop
+ support for Python 2.x entirely.**
+
Other Changes
-------------
diff --git a/docs/install.rst b/docs/install.rst
index 2f09ea6..8cf0b45 100644
--- a/docs/install.rst
+++ b/docs/install.rst
@@ -9,12 +9,19 @@ Supported Platforms
Passlib requires Python 2 (>= 2.6) or Python 3 (>= 3.3).
It is known to work with the following Python implementations:
+.. rst-class:: float-right
+
+.. warning::
+
+ * Support for Python 2.6 and 3.3 will be dropped in Passlib 1.8
+
+ * Support for Python 2.x will be dropped in Passlib 2.0
+
* CPython 2 -- v2.6 or newer.
* CPython 3 -- v3.3 or newer.
* PyPy -- v2.0 or newer.
* PyPy3 -- v5.3 or newer.
* Jython -- v2.7 or newer.
-* Pyston -- v0.5.1 or newer.
Passlib should work with all operating systems and environments,
as it contains builtin fallbacks for almost all OS-dependant features.