diff options
| author | copilot-swe-agent[bot] <[email protected]> | 2026-04-28 07:20:23 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-28 07:20:23 +0000 |
| commit | 54ad38da225aeb0563f060f879502b622f08e9f5 (patch) | |
| tree | 79a438402c27d94dbf261abe787d07672fbebd1c | |
| parent | def34fc74993643eb7ad63051220ad4031bf80e2 (diff) | |
| download | edify-54ad38da225aeb0563f060f879502b622f08e9f5.tar.xz edify-54ad38da225aeb0563f060f879502b622f08e9f5.zip | |
fix: remove Python 3.7 and PyPy 3.7 from CI matrix to fix failing builds
Agent-Logs-Url: https://github.com/luciferreeves/edify/sessions/84345a0f-6985-4c88-99ec-f3b073ec18e1
Co-authored-by: luciferreeves <[email protected]>
| -rw-r--r-- | .github/workflows/github-actions.yml | 36 | ||||
| -rw-r--r-- | ci/templates/.github/workflows/github-actions.yml | 2 |
2 files changed, 2 insertions, 36 deletions
diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 0f9e494..df099ea 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -19,24 +19,6 @@ jobs: toxpython: 'python3.9' tox_env: 'docs' os: 'ubuntu-latest' - - name: 'py37 (ubuntu)' - python: '3.7' - toxpython: 'python3.7' - python_arch: 'x64' - tox_env: 'py37' - os: 'ubuntu-latest' - - name: 'py37 (windows)' - python: '3.7' - toxpython: 'python3.7' - python_arch: 'x64' - tox_env: 'py37' - os: 'windows-latest' - - name: 'py37 (macos)' - python: '3.7' - toxpython: 'python3.7' - python_arch: 'x64' - tox_env: 'py37' - os: 'macos-latest' - name: 'py38 (ubuntu)' python: '3.8' toxpython: 'python3.8' @@ -109,24 +91,6 @@ jobs: python_arch: 'x64' tox_env: 'py311' os: 'macos-latest' - - name: 'pypy37 (ubuntu)' - python: 'pypy-3.7' - toxpython: 'pypy3.7' - python_arch: 'x64' - tox_env: 'pypy37' - os: 'ubuntu-latest' - - name: 'pypy37 (windows)' - python: 'pypy-3.7' - toxpython: 'pypy3.7' - python_arch: 'x64' - tox_env: 'pypy37' - os: 'windows-latest' - - name: 'pypy37 (macos)' - python: 'pypy-3.7' - toxpython: 'pypy3.7' - python_arch: 'x64' - tox_env: 'pypy37' - os: 'macos-latest' - name: 'pypy38 (ubuntu)' python: 'pypy-3.8' toxpython: 'pypy3.8' diff --git a/ci/templates/.github/workflows/github-actions.yml b/ci/templates/.github/workflows/github-actions.yml index 7ee6426..33869cd 100644 --- a/ci/templates/.github/workflows/github-actions.yml +++ b/ci/templates/.github/workflows/github-actions.yml @@ -21,6 +21,7 @@ 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 %} @@ -42,6 +43,7 @@ jobs: tox_env: '{{ env }}{% if 'cover' in env %},codecov{% endif %}' os: '{{ os }}-latest' {% endfor %} +{% endif %} {% endfor %} steps: - uses: actions/checkout@v2 |
