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.
This commit is contained in:
Jakub Stasiak 2023-09-06 01:45:39 +02:00 committed by GitHub
parent 80041f485d
commit d7a1a7a728
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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 }}

View File

@ -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
---------------