From d7a1a7a728d20151bd54b9b8b7adb94d25b2e848 Mon Sep 17 00:00:00 2001 From: Jakub Stasiak Date: Wed, 6 Sep 2023 01:45:39 +0200 Subject: [PATCH] Drop official Python 3.7 support (#230) It's really old now and it reached its end of life stage. Supporting the last four minor versions (3.8-3.11) should be good enough. --- .github/workflows/ci.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57df427..0105e73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "pypy3.7", "pypy3.8", "pypy3.9", "pypy3.10"] + python-version: [3.8, 3.9, "3.10", "3.11", "pypy3.8", "pypy3.9", "pypy3.10"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/README.md b/README.md index 7e76e81..68b03a6 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ The core values of Injector are: * Documentation: https://injector.readthedocs.org * Change log: https://injector.readthedocs.io/en/latest/changelog.html -Injector works with CPython 3.7+ and PyPy 3 implementing Python 3.7+. +Injector works with CPython 3.8+ and PyPy 3 implementing Python 3.8+. A Quick Example ---------------