File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 33 History
44=======
55
6- Unreleased
7- ==========
6+ 3.0.0
7+ =====
8+
89* Use Pypy 3.10
910* Drop support for Python 3.7
1011* Drop support for Django 2
1112* Add Python 3.12 support
13+ * Add Django 4.2 support
1214* Add Django 5.0 support
1315
14162.1.0
Original file line number Diff line number Diff line change 1313# add these directories to sys.path here. If the directory is relative to the
1414# documentation root, use os.path.abspath to make it absolute, like shown here.
1515# sys.path.insert(0, os.path.abspath('.'))
16+ from datetime import datetime
17+
1618from pipeline import __version__ as pipeline_version
1719
1820# -- General configuration -----------------------------------------------------
3840
3941# General information about the project.
4042project = "django-pipeline"
41- copyright = "2011-2014, Timothée Peignier"
43+ current_year = datetime .now ().year
44+ copyright = "2011-{}, Timothée Peignier" .format (current_year )
4245
4346# The version info for the project you're documenting, acts as replacement for
4447# |version| and |release|, also used in various other places throughout the
You can’t perform that action at this time.
0 commit comments