Skip to content

Commit 5b8b59a

Browse files
authored
Update travis configuration. (#86)
* Update travis config. * Fixes for py38 environment.
1 parent fe7cfe5 commit 5b8b59a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@ language: python
22
matrix:
33
fast_finish: true
44
include:
5-
- python: "3.5"
5+
- python: "3.6"
66
env: TOXENV=lint
7-
- python: "3.5"
8-
env: TOXENV=py35
97
- python: "3.6"
108
env: TOXENV=py36
9+
- python: "3.7"
10+
env: TOXENV=py37
11+
- python: "3.8"
12+
env: TOXENV=py38
1113
install: pip install -U setuptools tox coveralls
1214
script: tox
1315
after_success: coveralls

zigpy_deconz/zigbee/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def handle_tx_confirm(self, req_id, status):
268268
status,
269269
exc,
270270
)
271-
except asyncio.futures.InvalidStateError as exc:
271+
except asyncio.InvalidStateError as exc:
272272
LOGGER.debug(
273273
"Invalid state on future - probably duplicate response: %s", exc
274274
)

0 commit comments

Comments
 (0)