Environment for the Parallel Python workshop. Lesson material can be found on the Software Carpentry Incubator
If the tests pass, your setup is good for the workshop.
UV is our recommended tool to manage the Python environment. Please follow the UV install instructions if you haven't already. Then, running from the directory where you cloned this repository, run the following commands:
uv sync
uv run pytestIf you want to use Conda instead of UV, you can do the following:
conda env create -f environment.yml
conda activate parallel-python
pytest