Skip to content

Commit 6aca919

Browse files
authored
Drop Python 3.7 support. (#75)
1 parent 0b65bf3 commit 6aca919

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ a pre-defined interface (see [extending `itemadapter`](#extending-itemadapter)).
2424

2525
## Requirements
2626

27-
* Python 3.7+
27+
* Python 3.8+
2828
* [`scrapy`](https://scrapy.org/): optional, needed to interact with `scrapy` items
2929
* [`attrs`](https://pypi.org/project/attrs/): optional, needed to interact with `attrs`-based items
3030
* [`pydantic`](https://pypi.org/project/pydantic/): optional, needed to interact with

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@
2020
"itemadapter": ["py.typed"],
2121
},
2222
include_package_data=True,
23-
python_requires=">=3.7",
23+
python_requires=">=3.8",
2424
classifiers=[
2525
"Development Status :: 3 - Alpha",
2626
"License :: OSI Approved :: BSD License",
2727
"Programming Language :: Python",
28-
"Programming Language :: Python :: 3.7",
2928
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)