Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions user_guide_src/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@
#
# import os
# import sys
import datetime
# sys.path.insert(0, os.path.abspath('.'))

# -- Project information -----------------------------------------------------

project = 'CodeIgniter'
author = 'CodeIgniter Foundation'
copyright = '2019-2023 CodeIgniter Foundation'
year_now = datetime.date.today().year
copyright = '2019-' + str(year_now) + ' CodeIgniter Foundation'

# The short X.Y version.
version = '4.2'
Expand Down Expand Up @@ -137,4 +139,4 @@
epub_title = 'CodeIgniter4'
epub_author = 'CodeIgniter Foundation'
epub_publisher = 'CodeIgniter Foundation'
epub_copyright = '2019-2022 CodeIgniter Foundation'
epub_copyright = copyright