Skip to content

Commit 1f46d2e

Browse files
committed
Updated configuration files.
1 parent 17eaaef commit 1f46d2e

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ repos:
99
- id: check-ast
1010
- id: check-byte-order-marker
1111
- id: check-case-conflict
12-
- id: check-docstring-first
1312
- id: check-executables-have-shebangs
1413
- id: check-json
1514
- id: check-merge-conflict
@@ -23,9 +22,10 @@ repos:
2322
- id: mixed-line-ending
2423

2524
- repo: https://github.com/domdfcoding/pre-commit-hooks
26-
rev: v0.0.1
25+
rev: v0.0.2
2726
hooks:
2827
- id: requirements-txt-sorter
28+
- id: check-docstring-first
2929

3030
- repo: https://github.com/pre-commit/pygrep-hooks
3131
rev: v1.5.1

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ python:
1313

1414
install:
1515

16-
- pip install pip --upgrade
16+
- pip install --upgrade pip
1717
- pip install tox tox-travis
1818
- pip install coveralls coverage_pyver_pragma
1919

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
33
"setuptools >= 40.6.0",
4-
"wheel >= 0.34.2",
5-
]
4+
"wheel >= 0.34.2",
5+
]
66
build-backend = "setuptools.build_meta"

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[tox]
44
envlist = py36, py37, py38, pypy3, py39-dev, mypy, build
55
skip_missing_interpreters = true
6-
requires = pip >= 19.0.0
6+
requires = pip>=20.2.1
77
isolated_build = true
88

99

@@ -26,7 +26,9 @@ python =
2626

2727

2828
[testenv]
29-
setenv = PYTHONDEVMODE = 1
29+
setenv =
30+
PYTHONDEVMODE = 1
31+
PIP_USE_FEATURE=2020-resolver
3032
# Install test requirements
3133
deps = -r{toxinidir}/tests/requirements.txt
3234
commands =

0 commit comments

Comments
 (0)