maxtepkeev / architect

A set of tools which enhances ORMs written in Python with more features
Other
391 stars 57 forks source link

improved support for Django 1.6.1 #32

Closed gutomaia closed 7 years ago

gutomaia commented 7 years ago

Django 1.6 does not have the setup function.

That fixed architect for projects that uses Django 1.6.1.

coveralls commented 7 years ago

Coverage Status

Changes Unknown when pulling 3ca39a895bd454b5436d2e1582887c84b743d2ed on gutomaia:fix_django_1_6_1 into \ on maxtepkeev:master**.

maxtepkeev commented 7 years ago

Thanks!

maxtepkeev commented 7 years ago

Okay, looks like I was too fast...

Why exactly do we need to do that ? If you look at the code, a call to setup() is wrapped inside try/catch block, so it should work correctly on Django 1.6.

Did you have amy problems with it ?