Skip to content

Commit

Permalink
make copyright dynamic (who cares?) ignore docs artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
aerispaha committed Nov 27, 2024
1 parent f9c7212 commit b4a9269
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@ _build/
*.thm

# env
venv/
venv/

# docs artifacts
docs/_build/
docs/site/
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#
# from recommonmark.transform import AutoStructify
# from m2r import MdInclude
from datetime import datetime
import os
import sys
import swmmio
Expand All @@ -23,7 +24,7 @@
# -- Project information -----------------------------------------------------

project = 'swmmio'
copyright = '2024, Adam Erispaha'
copyright = f'{datetime.now().year}, Adam Erispaha'
author = 'Adam Erispaha'

# The short X.Y version
Expand Down

0 comments on commit b4a9269

Please sign in to comment.