-
-
Notifications
You must be signed in to change notification settings - Fork 617
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
Scheduled workflow failed #2577
Labels
Comments
@sdesrozis can you please take a look |
Something changed with import dill
from abc import ABCMeta
class ABCMetaClass(metaclass=ABCMeta):
def __init__(self):
pass
class Test(ABCMetaClass):
def __init__(self):
pass
if __name__ == "__main__":
t = Test()
t = dill.loads(dill.dumps(t)) The above code works fine with See the issue uqfoundation/dill#332 The minimalist snippet from the issue import dill as pickle
from abc import ABCMeta
class TestClass(metaclass=ABCMeta):
pass
with open('test.pickle', 'wb') as f:
pickle.dump(TestClass, f) |
Please, read this uqfoundation/dill#450 (comment) |
Ok, thanks for investigating this. Let's fix dill version to the working
one and thus fix our CI
…On Mon, May 23, 2022, 09:58 Sylvain Desroziers ***@***.***> wrote:
Please, read this uqfoundation/dill#450 (comment)
<uqfoundation/dill#450 (comment)>
—
Reply to this email directly, view it on GitHub
<#2577 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AASYOH4SE7NVX3YRQWINF5TVLM3DPANCNFSM5WSRRONQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh no, something went wrong in the scheduled workflow PyTorch version tests with commit dc1d085.
Please look into it:
https://github.com/pytorch/ignite/actions/runs/2364687129
Feel free to close this if this was just a one-off error.
The text was updated successfully, but these errors were encountered: