Pickle option available in runtime?

I didn’t see pickle on the environment-cpu.yml list. I tried to conda-lock with pickle5 but got a bunch of errors. Is there a plan to add pickle? Or is there something similar in there already? Or should I just save dictionaries as json?

Hi @scottmreed,

pickle is a part of the Python standard library and should not need to be separately installed: pickle — Python object serialization — Python 3.10.13 documentation

My understanding about pickle5 is that it is a backport of Python 3.8’s new pickle features to earlier versions of Python. The code execution runtime is using Python 3.10 so pickle5 should not be applicable.

Of course! As the deadline looms, I started getting worried about things not working right. I was overthinking it. Thanks.