From 80c8159f71a120291c56955246f9b80f9af908b3 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 20 Oct 2023 06:21:29 -0400 Subject: [PATCH] chore: drop 3.11 & use pypy3.10 (#296) Signed-off-by: Henry Schreiner --- {{cookiecutter.project_name}}/.github/workflows/ci.yml | 4 ++-- .../src/{{cookiecutter.__project_slug}}/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/{{cookiecutter.project_name}}/.github/workflows/ci.yml b/{{cookiecutter.project_name}}/.github/workflows/ci.yml index 277c6ec1..b5898356 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_name}}/.github/workflows/ci.yml @@ -40,11 +40,11 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.11", "3.12"] + python-version: ["3.8", "3.12"] runs-on: [ubuntu-latest, macos-latest, windows-latest] include: - - python-version: pypy-3.9 + - python-version: pypy-3.10 runs-on: ubuntu-latest steps: diff --git a/{{cookiecutter.project_name}}/src/{{cookiecutter.__project_slug}}/__init__.py b/{{cookiecutter.project_name}}/src/{{cookiecutter.__project_slug}}/__init__.py index 3cd31f44..dd22a3a3 100644 --- a/{{cookiecutter.project_name}}/src/{{cookiecutter.__project_slug}}/__init__.py +++ b/{{cookiecutter.project_name}}/src/{{cookiecutter.__project_slug}}/__init__.py @@ -27,4 +27,4 @@ {%- endif %} -__all__ = ("__version__",) +__all__ = ["__version__"]