File tree 4 files changed +2
-6
lines changed
4 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,11 @@ jobs:
13
13
matrix :
14
14
os : ["ubuntu-latest"]
15
15
python-version :
16
- - " 3.7"
17
16
- " 3.8"
18
17
- " 3.9"
19
18
- " 3.10"
20
19
- " 3.11"
21
20
- " 3.12"
22
- - " pypy-3.7"
23
21
- " pypy-3.8"
24
22
- " pypy-3.9"
25
23
- " pypy-3.10"
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ This builds a standard wordcount function from pieces within ``toolz``:
73
73
Dependencies
74
74
------------
75
75
76
- ``toolz `` supports Python 3.7 + with a common codebase.
76
+ ``toolz `` supports Python 3.8 + with a common codebase.
77
77
It is pure Python and requires no dependencies beyond the standard
78
78
library.
79
79
Original file line number Diff line number Diff line change 22
22
long_description = (open ('README.rst' ).read () if exists ('README.rst' )
23
23
else '' ),
24
24
zip_safe = False ,
25
- python_requires = ">=3.7 " ,
25
+ python_requires = ">=3.8 " ,
26
26
classifiers = [
27
27
"Development Status :: 5 - Production/Stable" ,
28
28
"License :: OSI Approved :: BSD License" ,
29
29
"Programming Language :: Python" ,
30
30
"Programming Language :: Python :: 3" ,
31
- "Programming Language :: Python :: 3.7" ,
32
31
"Programming Language :: Python :: 3.8" ,
33
32
"Programming Language :: Python :: 3.9" ,
34
33
"Programming Language :: Python :: 3.10" ,
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
- py37
4
3
py38
5
4
py39
6
5
py310
You can’t perform that action at this time.
0 commit comments