Skip to content

Commit b461d21

Browse files
projectgusdpgeorge
authored andcommitted
tests/run-internalbench.py: Remove old CPython reference.
At one point it was possible to internal_bench CPython vs MicroPython, but seemingly not any more. Signed-off-by: Angus Gratton <[email protected]>
1 parent dd8a69b commit b461d21

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Diff for: tests/run-internalbench.py

-5
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,11 @@
88
from glob import glob
99
from collections import defaultdict
1010

11-
# Tests require at least CPython 3.3. If your default python3 executable
12-
# is of lower version, you can point MICROPY_CPYTHON3 environment var
13-
# to the correct executable.
1411
if os.name == "nt":
15-
CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3.exe")
1612
MICROPYTHON = os.getenv(
1713
"MICROPY_MICROPYTHON", "../ports/windows/build-standard/micropython.exe"
1814
)
1915
else:
20-
CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3")
2116
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-standard/micropython")
2217

2318

0 commit comments

Comments
 (0)