Skip to content

Commit

Permalink
Copyright specifies year range
Browse files Browse the repository at this point in the history
  • Loading branch information
niksirbi committed Oct 27, 2023
1 parent 9df347d commit 20bed77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Copyright (c) 2023, University College London
Copyright (c) 2022-2023, University College London

All rights reserved.

Expand Down
4 changes: 3 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import os
import sys
from datetime import date

import setuptools_scm

Expand All @@ -21,7 +22,8 @@
sys.path.insert(0, os.path.abspath("../.."))

project = "movement"
copyright = "2023, University College London"
current_year = date.today().year
copyright = f"2022-{current_year}, University College London"
author = "Niko Sirmpilatze"
try:
release = setuptools_scm.get_version(root="../..", relative_to=__file__)
Expand Down

0 comments on commit 20bed77

Please sign in to comment.