Re: Bytecode in Migrations

2015-02-12 Thread Stan
ing git branches before. We have pyc files turned off > in dev to stop this. > > Andrew > On 11 Feb 2015 21:05, "abhillman" > > wrote: > >> I have gotten bitten by lingering bytecode in migrations on several >> occasions. Steps to reproduce are a little

Re: Bytecode in Migrations

2015-02-11 Thread Andrew Godwin
have pyc files turned off in dev to stop this. Andrew On 11 Feb 2015 21:05, "abhillman" wrote: > I have gotten bitten by lingering bytecode in migrations on several > occasions. Steps to reproduce are a little bit complex, but here is an > rough example: > > Loca

Re: Bytecode in Migrations

2015-02-11 Thread abhillman
llman > wrote: > >> I have gotten bitten by lingering bytecode in migrations on several >> occasions. Steps to reproduce are a little bit complex, but here is an >> rough example: >> >> Local Box: >> — have *.pyc rule in .gitignore >> — create some

Re: Bytecode in Migrations

2015-02-11 Thread abhillman
; >> I have gotten bitten by lingering bytecode in migrations on several >> occasions. Steps to reproduce are a little bit complex, but here is an >> rough example: >> >> Local Box: >> — have *.pyc rule in .gitignore >> — create some migrations >> —

Re: Bytecode in Migrations

2015-02-11 Thread Collin Anderson
Hah. Check out this ticket :) https://code.djangoproject.com/ticket/23406 On Wed, Feb 11, 2015 at 4:04 PM, abhillman wrote: > I have gotten bitten by lingering bytecode in migrations on several > occasions. Steps to reproduce are a little bit complex, but here is an > rough example:

Bytecode in Migrations

2015-02-11 Thread abhillman
I have gotten bitten by lingering bytecode in migrations on several occasions. Steps to reproduce are a little bit complex, but here is an rough example: Local Box: — have *.pyc rule in .gitignore — create some migrations — commit them Server Box: — pull repository — execute migrations Local