aboutsummaryrefslogtreecommitdiff
path: root/ci/templates/.github/workflows/github-actions.yml
diff options
context:
space:
mode:
authornatsuoto <[email protected]>2026-04-28 16:38:44 +0530
committerBobby <[email protected]>2026-04-28 16:53:18 +0530
commit013c786d5c460e572ef4187e1aac8bf7782ec8f2 (patch)
tree8ddd934a1e16c9ec7e0a8086a92a6fb162ed5311 /ci/templates/.github/workflows/github-actions.yml
parentbe44bbaa9282de283a8f717971a42f19ed1ad354 (diff)
downloadedify-013c786d5c460e572ef4187e1aac8bf7782ec8f2.tar.xz
edify-013c786d5c460e572ef4187e1aac8bf7782ec8f2.zip
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
Diffstat (limited to 'ci/templates/.github/workflows/github-actions.yml')
-rw-r--r--ci/templates/.github/workflows/github-actions.yml2
1 files changed, 0 insertions, 2 deletions
diff --git a/ci/templates/.github/workflows/github-actions.yml b/ci/templates/.github/workflows/github-actions.yml
index 23341dc..eb42d88 100644
--- a/ci/templates/.github/workflows/github-actions.yml
+++ b/ci/templates/.github/workflows/github-actions.yml
@@ -21,7 +21,6 @@ jobs:
os: 'ubuntu-latest'
{% for env in tox_environments %}
{% set prefix = env.split('-')[0] -%}
-{% if prefix not in ['py37', 'pypy37'] %}
{% if prefix.startswith('pypy') %}
{% set python %}pypy-{{ prefix[4] }}.{{ prefix[5] }}{% endset %}
{% set cpython %}pp{{ prefix[4:5] }}{% endset %}
@@ -43,7 +42,6 @@ jobs:
{% endif %}tox_env: '{{ env }}{% if 'cover' in env %},codecov{% endif %}'
os: '{{ os }}-latest'
{% endfor %}
-{% endif %}
{% endfor %}
steps:
- uses: actions/checkout@v2