summaryrefslogtreecommitdiffstats
path: root/docs/source/devguide/how-to/update-1.3-plugin.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/source/devguide/how-to/update-1.3-plugin.md')
-rw-r--r--docs/source/devguide/how-to/update-1.3-plugin.md15
1 files changed, 1 insertions, 14 deletions
diff --git a/docs/source/devguide/how-to/update-1.3-plugin.md b/docs/source/devguide/how-to/update-1.3-plugin.md
index 6374a0c0d..9c086902b 100644
--- a/docs/source/devguide/how-to/update-1.3-plugin.md
+++ b/docs/source/devguide/how-to/update-1.3-plugin.md
@@ -11,7 +11,7 @@ compatible with 2.0 and this guide aims to helps with that process.
### Python version matching
-Ensure your code is both Python 2.7 and Python >=3.5 compatible.
+Ensure your code is Python >=3.5 compatible.
In `1.3-stable` the plugins that were built with a specific version of Python
would only be loaded if the system Python also matched.
@@ -19,19 +19,6 @@ would only be loaded if the system Python also matched.
This has change in Deluge 2.0 and it will load any Python version of plugin
eggs so compatibility is essential for end-users not to encounter issues.
-### Six
-
-Use [six] to assist with compatibility.
-
-[six]: https://pythonhosted.org/six/
-
-### Unicode literals
-
-Add the following to files to ensure strings and bytes separation so there
-are no surprises when running on Python 3.
-
- from __future__ import unicode_literals
-
## GTK 3 addition
In order to support both Deluge 1.3 and 2.0 all existing plugin GTK UI files