Skip to content

Commit 03cced8

Browse files
committed
Update dependencies and environments (#17)
1 parent 0050bca commit 03cced8

File tree

6 files changed

+21
-24
lines changed

6 files changed

+21
-24
lines changed

.isort.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ force_grid_wrap=0
88
use_parentheses=True
99
line_length=88
1010
indent = " "
11-
# by default isort don't check module indexes
12-
not_skip = __init__.py
1311
# will group `import x` and `from x import` of the same module.
1412
force_sort_within_sections = true
15-
sections = FUTURE,STDLIB,INBETWEENS,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
13+
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
1614
default_section = THIRDPARTY
1715
known_first_party = pyheos,tests
1816
forced_separate = tests

.travis.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ language: python
22
matrix:
33
fast_finish: true
44
include:
5-
- python: '3.6'
6-
env: TOXENV=lint
7-
- python: '3.6'
8-
env: TOXENV=cov
9-
after_success: coveralls
10-
- python: '3.7'
11-
env: TOXENV=py37
12-
dist: xenial
5+
- python: "3.8"
6+
env: TOXENV=lint
7+
- python: "3.8"
8+
env: TOXENV=cov
9+
after_success: coveralls
10+
- python: "3.7"
11+
env: TOXENV=py37
1312
install: pip install -U tox coveralls
1413
script: tox
1514
deploy:

script/lint.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
2-
isort tests pyheos --recursive
2+
isort tests pyheos
33
black tests pyheos
44
pylint tests pyheos
55
flake8 tests pyheos --doctests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"Operating System :: OS Independent",
3737
"Topic :: Software Development :: Libraries",
3838
"Topic :: Home Automation",
39-
"Programming Language :: Python :: 3.6",
4039
"Programming Language :: Python :: 3.7",
40+
"Programming Language :: Python :: 3.8",
4141
],
4242
)

test-requirements.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
black==19.3b0
2-
coveralls==1.8.2
3-
flake8==3.7.8
4-
flake8-docstrings==1.3.1
5-
isort==4.3.21
6-
pylint==2.3.1
7-
pytest==5.1.1
8-
pytest-asyncio==0.10.0
9-
pytest-cov==2.7.1
10-
pytest-timeout==1.3.3
1+
black==20.8b1
2+
coveralls==2.1.2
3+
flake8==3.8.4
4+
flake8-docstrings==1.5.0
5+
isort==5.6.4
6+
pylint==2.6.0
7+
pytest==6.1.2
8+
pytest-asyncio==0.14.0
9+
pytest-cov==2.10.1
10+
pytest-timeout==1.4.2

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ setenv =
1818
deps =
1919
-r{toxinidir}/test-requirements.txt
2020
commands =
21-
isort tests pyheos --recursive --check-only
21+
isort tests pyheos --check-only
2222
black tests pyheos --check --fast --quiet
2323
pylint pyheos tests
2424
flake8 tests pyheos --doctests

0 commit comments

Comments
 (0)