Cannot install updates beyond 1.11.8

hi @kstewart!

Thanks for your question and welcome to the Prodigy community :wave:

I'm sorry to hear about the issues. We had a similar problem with x86 Mac last week.

Can you confirm, but are you pointing to a folder with all six of your wheel files rather than explicitly naming the wheel file? This may be part of the problem.

Like the post above recommends, can you try on a fresh environment?

conda create --name prodigy_env python=3.9 # you can of course change the name parameter
conda activate prodigy_env
pip install prodigy -f prodigy-1.11.11-cp39-cp39-macosx_11_0_x86_64.whl

Alternatively, if that doesn't work, we typically recommend using venv instead of conda

python3.9 -m venv venv
source venv/bin/activate
pip install -f prodigy-1.11.11-cp39-cp39-macosx_11_0_x86_64.whl

Let me know if either of these suggestions help.