Skip to content

Commit

Permalink
Flit now requires Python >=3.6
Browse files Browse the repository at this point in the history
takluyver committed Jul 31, 2021
1 parent b44fac4 commit bc33d4d
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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",
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit bc33d4d

Please sign in to comment.