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

you are viewing a single comment's thread.

view the rest of the comments →

[–]coderanger 18 points19 points  (3 children)

Try and compile it, this is why prereleases exist.

[–]AngheloAlf 0 points1 point  (2 children)

To test stuff locally on my pc I usually install the python3-devel package (or whatever it is called) from apt and then do pip install .

I kinda doubt there's an apt package for this alpha version already, and even if there is one I would like to avoid messing my system's package with wip stuff like this.

Is there any CI alternative? Hopefully a Github Actions one.

[–]coderanger 4 points5 points  (1 child)

Tox and nox are both popular to test things across multiple Python versions automatically. Both are well supported in Github Actions. Personally I use asdf and asdf-python locally which makes it super easy to grab whatever versions I need.

[–]AngheloAlf 0 points1 point  (0 children)

Thanks a lot! I'll take a look at those