You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi,
I updated one of my project to Django 1.7.9, and a migration was added in `django/contrib/contenttypes/migrations/`, namely `0002_remove_content_type_name.py`.
This migration uses `RunPython.noop`, which my version of Django cannot find. It's specified in the doc that this feature is new in Django 1.8.
Is this a bug?
Thanks!
Tim Graham
unread,
Jul 9, 2015, 9:17:18 AM7/9/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
The 1.7.9 wheel file that was first uploaded to PyPI was corrupted. I uploaded a corrected file about 2 hours after the initial release. Sorry for inconvenience and confusion!
Ben Cail
unread,
Jul 9, 2015, 9:49:32 AM7/9/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
I am seeing the same issue when I try to upgrade my project to 1.7.9...
The 1.7.9 wheel file that was first uploaded to PyPI was corrupted. I uploaded a corrected file about 2 hours after the initial release. Sorry for inconvenience and confusion!
Any guidance on how to recover from a "cached" corrupted wheel?
Would it be better in general to replace "bad" versions with new releases with new numbers rather than creating a 2nd differing released version of supposedly the same thing?
Rebecca Muraya
unread,
Jul 9, 2015, 10:56:07 AM7/9/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
I had this error. Pip caches things in a few places, maybe more:
~/.pip/
/tmp/
~/.cache/pip/
Tim Graham
unread,
Jul 9, 2015, 11:56:39 AM7/9/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
The consequences of replacing the bad wheel file weren't entirely clear. Knowing what we know now, I guess next time (hopefully there won't be one) I will just roll a new version. If you think I should do that at this point, let me know.
Luis Zárate
unread,
Jul 9, 2015, 1:33:25 PM7/9/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Maybe you need to uninstall django first, clear pip cache and install again.
pip uninstall django==1.7.9 rm ~/.cache/pip/* # or wherever it is pip cache folder pip install django==1.7.9