From bc33d4de82677f16fa38ca053e65f9e56faf72da Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 31 Jul 2021 15:49:39 +0100 Subject: [PATCH] Flit now requires Python >=3.6 --- pyproject.toml | 2 +- tox.ini | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fa9916ef..89646843 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dependencies = [ "toml", "zipfile36; python_version == '3.5'", ] -requires-python = ">=3.5" +requires-python = ">=3.6" readme = "README.rst" classifiers = ["Intended Audience :: Developers", "License :: OSI Approved :: BSD License", diff --git a/tox.ini b/tox.ini index 361a3fa1..1ca9e387 100644 --- a/tox.ini +++ b/tox.ini @@ -36,11 +36,15 @@ setenv = commands = python -m pytest --cov=flit --cov=flit_core/flit_core -# Python 3.4: only test flit_core +# Python 3.4 & 3.5: only test flit_core [testenv:py34] commands = python -m pytest --cov=flit_core/flit_core --pyargs flit_core +[testenv:py35] +commands = + python -m pytest --cov=flit_core/flit_core --pyargs flit_core + [testenv:bootstrap] skip_install = true # Make the install step a no-op, so nothing gets installed in the env