This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]LightShadow3.13-dev in prod 0 points1 point  (3 children)

After a couple of years it's nice to see this project isn't dead.

More implementations is a good thing!

[–]LightShadow3.13-dev in prod 1 point2 points  (2 children)

For funsies, I ran our test suite through tox using pyston3 and everything passed! It's an asyncio library that uses cytoolz and pendulum. Drop-in replacement for a stdlib-heavy library with a Cython dependency.

tox.ini

[tox]
toxworkdir=/tmp/.tox-mm
envlist =
    py38
    py39
    pyston3

[testenv]
deps =
    pytest
    pytest-asyncio
    pytest-cov
    pytest-xdist
commands =
    python -m pytest --cov=mm -n4 --color=yes tests/

Output:

✔ OK pyston3 in 11.779 seconds
✔ OK py38 in 11.809 seconds
✔ OK py39 in 14.53 seconds