-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiprocessing with num_workers>1 fails with pickle errors #104
Comments
I guess though. Bu you have not upgraded the Python version, so why does the error suddenly appear? |
That is a very good question. I repeated the test locally with Python 3.8 and it fails with the same error message. So I guess, it must be some interaction with another package. |
Maybe try to downgrade |
Good point the error was introduced with |
The problem was that there were no tests for |
Turns out |
This is fixed with release 1.2.1 of |
When running the tests in the current main we get:
If I inspect the problem it uses
multiprocessing=True
andnum_workers=5
.The error does not appear if I use
multiprocessing=False
ornum_workers=1
.@frankenjoe seems like they changed something in Python?
The text was updated successfully, but these errors were encountered: