-
Notifications
You must be signed in to change notification settings - Fork 81
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
Update to PyPi #94
Comments
Yes, I will be pushing the latest version on PyPI. I'm waiting on verification on: Those should be fixed in the latest master on github. If you could help by verifying this on your end, I can push the updated version of PyPI. |
As mentioned in the comments and already removed the prebious JSONField and at urls.py replaced re-path instead of url it is workable in 4. I have manually updated the files from github and it is working fine. So I think you may push. |
But need to remove the package JSONField as it is not needed and it calls ugettex_lazy |
Please do push to PyPi, but in the meantime if anyone wants to use this package without this error, one can install the package directly from the git repository: Note: I wouldn't use this in production, but works fine for development |
PyPi and git are diffrent. I saw it in the model. Should be updated at the PyPI.
from pypi
`from six import python_2_unicode_compatible
from django.db import models
from django.utils.translation import gettext_lazy as _
from jsonfield.fields import JSONField
from .managers import CurrencyManager
`
in gitub
`from six import python_2_unicode_compatible
from django.db import models
from django.utils.translation import gettext_lazy as _
from .managers import `
The text was updated successfully, but these errors were encountered: