File tree Expand file tree Collapse file tree 4 files changed +27
-24
lines changed Expand file tree Collapse file tree 4 files changed +27
-24
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ Changelog
55unreleased
66==========
77
8+ 3.0.0 2022-01-22
9+ ================
10+
811* Added support for Django 3.2 and 4.0
912* Drop support for python 3.5 and 3.6
1013
Original file line number Diff line number Diff line change 1- __version__ = '2 .0.0'
1+ __version__ = '3 .0.0'
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 2 .0.0
3- commit = False
2+ current_version = 3 .0.0
3+ commit = True
44tag = False
55
66[bumpversion:file:setup.py]
@@ -12,33 +12,33 @@ search = __version__ = '{current_version}'
1212replace = __version__ = ' {new_version}'
1313
1414[bumpversion:file:CHANGELOG.rst]
15- search =
15+ search =
1616 unreleased
1717 ==========
18- replace =
18+ replace =
1919 unreleased
2020 ==========
21-
21+
2222 {new_version} {utcnow:%%Y-%%m-%%d}
23- ================
23+ ================
2424
2525[flake8]
2626max-line-length = 119
27- exclude =
28- *.egg-info,
29- .eggs,
30- .env,
31- .git,
32- .settings,
33- .tox,
34- .venv,
35- build,
36- data,
37- dist,
38- docs/conf.py,
39- *migrations*,
40- requirements,
41- tmp
27+ exclude =
28+ *.egg-info,
29+ .eggs,
30+ .env,
31+ .git,
32+ .settings,
33+ .tox,
34+ .venv,
35+ build,
36+ data,
37+ dist,
38+ docs/conf.py,
39+ *migrations*,
40+ requirements,
41+ tmp
4242
4343[isort]
4444line_length = 119
Original file line number Diff line number Diff line change 3232
3333setup (
3434 name = 'django-classy-tags' ,
35- version = '2 .0.0' ,
35+ version = '3 .0.0' ,
3636 author = 'Jonas Obrist' ,
37373838 maintainer = 'Django CMS Association and contributors' ,
4141 license = 'BSD' ,
4242 description = 'Class based template tags for Django' ,
4343 long_description = open ('README.rst' ).read (),
44- packages = find_packages (),
44+ packages = find_packages (exclude = [ 'tests' ] ),
4545 python_requires = '>=3.7' ,
4646 include_package_data = True ,
4747 zip_safe = False ,
You can’t perform that action at this time.
0 commit comments