Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Sun, 23 Aug 2020 15:09:25 UTC Commit: e246fd8b39e271a5e144217cad604f022862ea0b https://github.com/geany/www.geany.org/commit/e246fd8b39e271a5e144217cad604f...
Log Message: ----------- Require Python 3.6 and use isort >= 5
isort 5.x requires Python >= 3.6, so let's update the requirement as well.
Modified Paths: -------------- .travis.yml README.dev.md tox.ini
Modified: .travis.yml 1 lines changed, 0 insertions(+), 1 deletions(-) =================================================================== @@ -18,7 +18,6 @@ language: python cache: pip
python: - - "3.5" - "3.6" - "3.7" - "3.8"
Modified: README.dev.md 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -12,7 +12,7 @@ and uses Mezzanine (http://mezzanine.jupo.org/) for content management. As Django is based on Python, first of all you need Python and a couple of extra packages installed on your system.
-The code requires Python 3.5 or higher. +The code requires Python 3.6 or higher.
All Python related dependencies are listed in `requirements.txt` and can be installed via `pip` (see below).
Modified: tox.ini 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -22,13 +22,13 @@ geany_modules = geany latest_version news nightlybuilds pastebin static_docs [testenv] deps = flake8 - isort<5 # temporarily stick to isort 4.x: https://github.com/PyCQA/pylint/pull/3725 + isort pylint pylint-django -r{toxinidir}/requirements.txt commands = {envbindir}/flake8 {[tox]geany_modules} - {envbindir}/isort --check-only --diff --recursive {[tox]geany_modules} + {envbindir}/isort --check-only --diff {[tox]geany_modules} {envbindir}/pylint --rcfile=tox.ini {[tox]geany_modules}
[flake8]
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).