Skip to content

Commit

Permalink
Automatically set docs current year (#404) (#405)
Browse files Browse the repository at this point in the history
(cherry picked from commit 0cc3501)

Co-authored-by: Manoel Marques <Manoel.Marques@ibm.com>
  • Loading branch information
mergify[bot] and manoelmarques committed Aug 10, 2022
1 parent 61de244 commit 0d8e533
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#
import os
import sys
from datetime import date

sys.path.insert(0, os.path.abspath(".."))
sys.path.append(os.path.abspath("."))
Expand All @@ -49,7 +50,7 @@

# -- Project information -----------------------------------------------------
project = "Qiskit Optimization"
copyright = "2018, 2021, Qiskit Optimization Development Team" # pylint: disable=redefined-builtin
copyright = f"2018, {date.today().year}, Qiskit Optimization Development Team" # pylint: disable=redefined-builtin
author = "Qiskit Optimization Development Team"

# The short X.Y version
Expand Down

0 comments on commit 0d8e533

Please sign in to comment.