File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 22
33 History
44-------
5+ 2.1
6+ +++++++
7+ * Added `allow-same-source-origin ` to iframe sandbox so that things like `@font-face ` can function on localhost
8+ * Added testing on Django 4.1 and Python 3.11
9+ * Stopped testing on old versions of Python and Django which had already been dropped from setup.py
10+ * Some type hinting fixes
511
6- Current
12+ 2.0
713+++++++
814* Dropped Python 3.5 and 2.7 support
915* Testing against Django 2.2 to 3.1
Original file line number Diff line number Diff line change 1- __version__ = '2.0 .0'
1+ __version__ = '2.1 .0'
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 2.0 .0
2+ current_version = 2.1 .0
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change 44
55from setuptools import find_packages , setup
66
7- version = '2.0 .0'
7+ version = '2.1 .0'
88
99if sys .argv [- 1 ] == 'publish' :
1010 try :
4343 classifiers = [
4444 'Development Status :: 4 - Beta' ,
4545 'Framework :: Django' ,
46- 'Framework :: Django :: 2.2' ,
47- 'Framework :: Django :: 3.0' ,
48- 'Framework :: Django :: 3.1' ,
4946 'Framework :: Django :: 3.2' ,
5047 'Framework :: Django :: 4.0' ,
48+ 'Framework :: Django :: 4.1' ,
5149 'Intended Audience :: Developers' ,
5250 'License :: OSI Approved :: MIT License' ,
5351 'Natural Language :: English' ,
5654 'Programming Language :: Python :: 3.8' ,
5755 'Programming Language :: Python :: 3.9' ,
5856 'Programming Language :: Python :: 3.10' ,
57+ 'Programming Language :: Python :: 3.11' ,
5958 ],
6059)
You can’t perform that action at this time.
0 commit comments