Xavier-Lam / wechat-django

WeChat-Django旨在为接入微信公众平台的django开发者提供便捷的微信功能封装及最基本的后台管理支持
MIT License
198 stars 65 forks source link

需要更新jsonfiled里six的引用方式 #9

Closed vicvinc closed 4 years ago

vicvinc commented 4 years ago

django > 3.0 django.utils.six - Remove usage of this vendored library or switch to six.

https://pypi.org/project/six/

需要更新jsonfiled里six的引用,建议维护jsonfield包下encoder

from django.utils import timezone

更新为

from django.utils import timezone
import six
Xavier-Lam commented 4 years ago

已经在下一个大版本中更新,本版本如果没有特殊bug修复暂时不更新了 依赖可以改装jsonfield2==3.0.3,原jsonfield已经无人维护了

vicvinc commented 4 years ago

django这个版本更的有点蛋疼,很多跟six依赖的现在都出错了

vicvinc commented 4 years ago

楼主关了这个issue吧,估计过几天所有的包都会更关于six引用的问题,也不是啥大问题