-
Notifications
You must be signed in to change notification settings - Fork 17
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
Replace mock package with unittest.mock #77
Comments
@Chronial isn't mock in stdlib only for python 3.3+ and up? |
Oh, sorry – I must be doing to much python3 :). I for some reason thought it was also part of 2.7, but it is in fact not. Would it be possible to only require |
Yes, that looks great, thx :). |
@yakky It looks like this doesn't actually work, because you uploaded a py2+py3 wheel to pypi that states that it requires |
From what I can see, this package does not support any version of python that does not come with
mock
in it's standardlib. Is there any reason not use that?My main problem is that this lists
mock
as a requirement, which combined with pytest-dev/pytest-mock#54 now messes with my tests :).The text was updated successfully, but these errors were encountered: