Skip to content

Commit 166d95f

Browse files
committed
PyPy 2/3
1 parent b231ec4 commit 166d95f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ jobs:
4040
- name: CPython 3.8
4141
tox: py38
4242
action: 3.8
43+
- name: PyPy 2
44+
tox: pypy2
45+
action: pypy2
46+
- name: PyPy 3
47+
tox: pypy3
48+
action: pypy3
4349
reactor:
4450
- name: default
4551
tox: default

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
"Programming Language :: Python :: 3.6",
3030
"Programming Language :: Python :: 3.7",
3131
"Programming Language :: Python :: 3.8",
32+
"Programming Language :: Python :: Implementation :: CPython",
33+
"Programming Language :: Python :: Implementation :: PyPy",
3234
],
3335
entry_points={"pytest11": ["twisted = pytest_twisted"]},
3436
)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
3-
py27-defaultreactor
4-
py{35,36,37,38}-{default,qt5,asyncio}reactor
3+
py{27,py2,35,36,37,38,py3}-defaultreactor
4+
py{35,36,37,38,py3}-asyncioreactor
55
py{35,36,37,38}-qt5reactor
66
linting
77

0 commit comments

Comments
 (0)