From c336622516209cd347f74f7cf3b380728ce1270f Mon Sep 17 00:00:00 2001 From: Alex Thiessen Date: Sun, 23 Jan 2022 01:48:46 +0100 Subject: [PATCH] testing: Switch to Python 3.9 Don't bother with older versions. --- .pre-commit-config.yaml | 28 ++++++++++++++-------------- Makefile | 2 +- tox.ini | 6 +----- 3 files changed, 16 insertions(+), 20 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9a1ed84..5248878 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ repos: rev: v1.4.0 hooks: - id: autopep8-wrapper - language_version: python2 + language_version: python3 args: - --in-place - --aggressive @@ -11,40 +11,40 @@ repos: - --ignore=E731 - --max-line-length=131 - id: check-added-large-files - language_version: python2 + language_version: python3 - id: check-ast - language_version: python2 + language_version: python3 - id: check-case-conflict - language_version: python2 + language_version: python3 - id: check-docstring-first - language_version: python2 + language_version: python3 - id: debug-statements - language_version: python2 + language_version: python3 - id: double-quote-string-fixer - language_version: python2 + language_version: python3 - id: end-of-file-fixer - language_version: python2 + language_version: python3 exclude_types: [batch, lua] - id: fix-encoding-pragma - language_version: python2 + language_version: python3 - id: flake8 - language_version: python2 + language_version: python3 args: - --max-complexity=10 - --max-line-length=131 - --ignore=E402,E731 - --exclude=bin/autojump_argparse.py - id: name-tests-test - language_version: python2 + language_version: python3 - id: requirements-txt-fixer - language_version: python2 + language_version: python3 - id: trailing-whitespace - language_version: python2 + language_version: python3 - repo: git@github.com:asottile/reorder_python_imports.git rev: v1.1.1 hooks: - id: reorder-python-imports - language_version: python2 + language_version: python3 - repo: git@github.com:asottile/add-trailing-comma rev: v0.7.0 hooks: diff --git a/Makefile b/Makefile index c0c828c..1ea5cc6 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ test-xfail: pre-commit .PHONY: test-fast test-fast: pre-commit - @tox -e py27 + @tox -e py39 .PHONY: clean clean: diff --git a/tox.ini b/tox.ini index 8a21b97..8bd4fc6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,6 @@ [tox] envlist = - py26, - py27, - py33, - py34, - py35 + py39 # ignore missing setup.py skipsdist = True