From 013c786d5c460e572ef4187e1aac8bf7782ec8f2 Mon Sep 17 00:00:00 2001 From: natsuoto <279971144+natsuoto@users.noreply.github.com> Date: Tue, 28 Apr 2026 16:38:44 +0530 Subject: chore: drop dead template exclusion and refresh copyright year Two unrelated-but-tiny housekeeping items: - ci/templates/.github/workflows/github-actions.yml: the cookiecutter template still wrapped the matrix loop in `{% if prefix not in ['py37', 'pypy37'] %}`. Those tox envs were removed from `envlist` in #32, so the loop never visits them and the guard never fires. Dead Jinja, removed. - docs/conf.py: copyright year was hardcoded to '2022', which Sphinx was happily rendering as the docs footer in 2026. Bumped to a '2022-2026' span. Closes #42 --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/conf.py') diff --git a/docs/conf.py b/docs/conf.py index 4a28d66..bf7d99a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,7 +17,7 @@ extensions = [ source_suffix = '.rst' master_doc = 'index' project = 'Edify' -year = '2022' +year = '2022-2026' author = 'Bobby' copyright = '{0}, {1}'.format(year, author) version = release = '0.2.2' -- cgit v1.2.3