Skip to content

Commit 98740e5

Browse files
committed
fix-python-websockets#762: add py39 to coverage matrix ; bump py38 from rc to current
1 parent 4442c41 commit 98740e5

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.circleci/config.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,22 @@ jobs:
3131
- run: tox -e py37
3232
py38:
3333
docker:
34-
- image: circleci/python:3.8.0rc1
34+
- image: circleci/python:3.8.3
3535
steps:
3636
# Remove IPv6 entry for localhost in Circle CI containers because it doesn't work anyway.
3737
- run: sudo cp /etc/hosts /tmp; sudo sed -i '/::1/d' /tmp/hosts; sudo cp /tmp/hosts /etc
3838
- checkout
3939
- run: sudo pip install tox
4040
- run: tox -e py38
41+
py39:
42+
docker:
43+
- image: circleci/python:3.9.0a5
44+
steps:
45+
# Remove IPv6 entry for localhost in Circle CI containers because it doesn't work anyway.
46+
- run: sudo cp /etc/hosts /tmp; sudo sed -i '/::1/d' /tmp/hosts; sudo cp /tmp/hosts /etc
47+
- checkout
48+
- run: sudo pip install tox
49+
- run: tox -e pyNightly
4150

4251
workflows:
4352
version: 2
@@ -53,3 +62,6 @@ workflows:
5362
- py38:
5463
requires:
5564
- main
65+
- py39:
66+
requires:
67+
- main

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,coverage,black,flake8,isort,mypy
2+
envlist = py36,py37,py38,pyNightly,coverage,black,flake8,isort,mypy
33

44
[testenv]
55
commands = python -W default -m unittest {posargs}

0 commit comments

Comments
 (0)