Skip to content

Commit fe81c19

Browse files
authored
Drop Python 3.7 (#586)
1 parent 0c2b43a commit fe81c19

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

.github/workflows/test.yml

-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ jobs:
1313
matrix:
1414
os: ["ubuntu-latest"]
1515
python-version:
16-
- "3.7"
1716
- "3.8"
1817
- "3.9"
1918
- "3.10"
2019
- "3.11"
2120
- "3.12"
22-
- "pypy-3.7"
2321
- "pypy-3.8"
2422
- "pypy-3.9"
2523
- "pypy-3.10"

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ This builds a standard wordcount function from pieces within ``toolz``:
7373
Dependencies
7474
------------
7575

76-
``toolz`` supports Python 3.7+ with a common codebase.
76+
``toolz`` supports Python 3.8+ with a common codebase.
7777
It is pure Python and requires no dependencies beyond the standard
7878
library.
7979

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@
2222
long_description=(open('README.rst').read() if exists('README.rst')
2323
else ''),
2424
zip_safe=False,
25-
python_requires=">=3.7",
25+
python_requires=">=3.8",
2626
classifiers=[
2727
"Development Status :: 5 - Production/Stable",
2828
"License :: OSI Approved :: BSD License",
2929
"Programming Language :: Python",
3030
"Programming Language :: Python :: 3",
31-
"Programming Language :: Python :: 3.7",
3231
"Programming Language :: Python :: 3.8",
3332
"Programming Language :: Python :: 3.9",
3433
"Programming Language :: Python :: 3.10",

tox.ini

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
py37
43
py38
54
py39
65
py310

0 commit comments

Comments
 (0)