From 7ec4b516fa087b32832bfc55a4237dae0a468082 Mon Sep 17 00:00:00 2001 From: Vince Salvino Date: Sat, 29 Aug 2020 16:19:37 -0400 Subject: [PATCH] Specify required python versions (#6366) --- CHANGELOG.txt | 1 + CONTRIBUTORS.rst | 1 + docs/releases/2.11.rst | 1 + setup.py | 1 + 4 files changed, 4 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 178933972c..9e32d51f3b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -10,6 +10,7 @@ Changelog * Add `hooks.register_temporarily` utility function for testing hooks (Karl Hobley. Sponsored by the Mozilla Foundation) * Remove unidecode and use anyascii in for Unicode to ASCII conversion (Robbie Mackay) * Add `render` helper to `RoutablePageMixin` to support serving template responses according to Wagtail conventions (Andy Babic) + * Specify minimum Python version in setup.py (Vince Salvino) * Fix: Make page-level actions accessible to keyboard users in page listing tables (Jesse Menn) * Fix: `WAGTAILFRONTENDCACHE_LANGUAGES` was being interpreted incorrectly. It now accepts a list of strings, as documented (Karl Hobley) * Fix: Update oEmbed endpoints to use https where available (Matt Westcott) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 9ab8763804..7376ce5c5b 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -475,6 +475,7 @@ Contributors * Jesse Menn * Robbie Mackay * Vyacheslav Matyukhin +* Vince Salvino Translators =========== diff --git a/docs/releases/2.11.rst b/docs/releases/2.11.rst index a7b66e04e9..efb204e071 100644 --- a/docs/releases/2.11.rst +++ b/docs/releases/2.11.rst @@ -19,6 +19,7 @@ Other features * Add ``hooks.register_temporarily`` utility function for testing hooks (Karl Hobley. Sponsored by the Mozilla Foundation) * Remove unidecode and use anyascii in for Unicode to ASCII conversion (Robbie Mackay) * Add ``render`` helper to ``RoutablePageMixin`` to support serving template responses according to Wagtail conventions (Andy Babic) + * Specify minimum Python version in setup.py (Vince Salvino) Bug fixes diff --git a/setup.py b/setup.py index d3dfa97d48..74b84d5b0e 100755 --- a/setup.py +++ b/setup.py @@ -115,6 +115,7 @@ https://github.com/wagtail/wagtail/.", 'Framework :: Wagtail', 'Topic :: Internet :: WWW/HTTP :: Site Management', ], + python_requires='>=3.6', install_requires=install_requires, extras_require={ 'testing': testing_extras,