Skip to content

Commit 6c0d2fe

Browse files
committed
Merge remote-tracking branch 'origin/master' into record-autoextract-responses
2 parents e913128 + 5baa342 commit 6c0d2fe

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ['3.6', '3.7', '3.8', '3.9']
19+
python-version: ['3.7', '3.8', '3.9', '3.10']
2020

2121
steps:
2222
- uses: actions/checkout@v2
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
fail-fast: false
4242
matrix:
43-
python-version: ['3.9']
43+
python-version: ['3.10']
4444

4545
steps:
4646
- uses: actions/checkout@v2

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changes
22
=======
33

4+
TBR
5+
------------------
6+
7+
* removed support for Python 3.6
8+
* added support for Python 3.10
9+
410
0.7.0 (2021-08-05)
511
------------------
612

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Installation
3434

3535
pip install scrapy-autoextract
3636

37-
scrapy-autoextract requires Python 3.6+ for the download middleware and Python 3.7+ for the scrapy-poet provider
37+
scrapy-autoextract requires Python 3.7+ for the download middleware and Python 3.7+ for the scrapy-poet provider
3838

3939

4040
Usage

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ def get_version():
4444
'Operating System :: OS Independent',
4545
'License :: OSI Approved :: BSD License',
4646
'Programming Language :: Python :: 3 :: Only',
47-
'Programming Language :: Python :: 3.6',
4847
'Programming Language :: Python :: 3.7',
4948
'Programming Language :: Python :: 3.8',
5049
'Programming Language :: Python :: 3.9',
50+
'Programming Language :: Python :: 3.10',
5151
'Framework :: Scrapy',
5252
],
5353
)

tests/conftest.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, flake8
2+
envlist = py37, py38, py39, py310, flake8
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)