Skip to content

Commit d7a1a7a

Browse files
authored
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.
1 parent 80041f4 commit d7a1a7a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "pypy3.7", "pypy3.8", "pypy3.9", "pypy3.10"]
11+
python-version: [3.8, 3.9, "3.10", "3.11", "pypy3.8", "pypy3.9", "pypy3.10"]
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up Python ${{ matrix.python-version }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The core values of Injector are:
7272
* Documentation: https://injector.readthedocs.org
7373
* Change log: https://injector.readthedocs.io/en/latest/changelog.html
7474

75-
Injector works with CPython 3.7+ and PyPy 3 implementing Python 3.7+.
75+
Injector works with CPython 3.8+ and PyPy 3 implementing Python 3.8+.
7676

7777
A Quick Example
7878
---------------

0 commit comments

Comments
 (0)