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 3
3
History
4
4
=======
5
5
6
- Unreleased
7
- ==========
6
+ 3.0.0
7
+ =====
8
+
8
9
* Use Pypy 3.10
9
10
* Drop support for Python 3.7
10
11
* Drop support for Django 2
11
12
* Add Python 3.12 support
13
+ * Add Django 4.2 support
12
14
* Add Django 5.0 support
13
15
14
16
2.1.0
Original file line number Diff line number Diff line change 13
13
# add these directories to sys.path here. If the directory is relative to the
14
14
# documentation root, use os.path.abspath to make it absolute, like shown here.
15
15
# sys.path.insert(0, os.path.abspath('.'))
16
+ from datetime import datetime
17
+
16
18
from pipeline import __version__ as pipeline_version
17
19
18
20
# -- General configuration -----------------------------------------------------
38
40
39
41
# General information about the project.
40
42
project = "django-pipeline"
41
- copyright = "2011-2014, Timothée Peignier"
43
+ current_year = datetime .now ().year
44
+ copyright = "2011-{}, Timothée Peignier" .format (current_year )
42
45
43
46
# The version info for the project you're documenting, acts as replacement for
44
47
# |version| and |release|, also used in various other places throughout the
You can’t perform that action at this time.
0 commit comments