-
Notifications
You must be signed in to change notification settings - Fork 124
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
Django 1.9 compatibility #70
Conversation
FYI - there's one more issue in fields.py: "from django.utils.importlib import import_module" is not possible in 1.9 since django.utils.importlib has been removed. It looks like it can be simply replaced with importlib since it was added to python 2.7 and 3.1 |
@vrusinov fixed |
Thanks. I've also sent a pull request for that small thing: #71 Now let's see if author(s) respond and finally merge them. |
Yeah, that would be nice, we need this asap. We use it in production and this is the only package stopping us from upgrading to django 1.9 |
@simion Which branch of django are you using? We also want to move to 1.9 but were going to fork django and try and make the necessary changes |
@aburgel you seem to the the most recently active person on this repo (and django/mongodbengine). Are you still active/online? Are any of the others nonrel team members still bashing keys regularly? (@adieu @charettes @dartdog @emperorcezar @fhahn @flaper87 @gpitfield @gregbayer @Wilfred @wrwrwr ) Would be good to get some input on some of these pull requests and/or add someone who is willing to take up the task of moving this project forwards. |
@markunsworth I'm not active on this project anymore. I'm happy to help out if someone wants to take the lead on the project, but unfortunately I don't have much time to commit to this anymore. |
Please merge and make a release in pypi, we need this in production.
Thanks.