Skip to content

Commit 14b6d2c

Browse files
authored
Update history and docs conf to release v3 (#804)
1 parent 7b4eea1 commit 14b6d2c

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

HISTORY.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
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

1416
2.1.0

docs/conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
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+
1618
from pipeline import __version__ as pipeline_version
1719

1820
# -- General configuration -----------------------------------------------------
@@ -38,7 +40,8 @@
3840

3941
# General information about the project.
4042
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)
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

0 commit comments

Comments
 (0)