Skip to content

Commit 4a1429c

Browse files
author
Chris Rossi
authored
Remove pypy from tests run by nox. (#286)
We don't claim to support pypy at this time.
1 parent b660853 commit 4a1429c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

packages/google-cloud-ndb/noxfile.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,12 @@
2121
import shutil
2222

2323
import nox
24-
import sys
2524

2625
LOCAL_DEPS = ("google-cloud-core", "google-api-core")
2726
NOX_DIR = os.path.abspath(os.path.dirname(__file__))
2827
DEFAULT_INTERPRETER = "3.7"
29-
PYPY = "pypy3"
30-
ALL_INTERPRETERS = ("2.7", "3.6", "3.7", PYPY)
31-
PY3_INTERPRETERS = ("3.6", "3.7", PYPY)
28+
ALL_INTERPRETERS = ("2.7", "3.6", "3.7")
29+
PY3_INTERPRETERS = ("3.6", "3.7")
3230
MAJOR_INTERPRETERS = ("2.7", "3.7")
3331

3432

0 commit comments

Comments
 (0)