Skip to content

Commit 4a82dfd

Browse files
committed
Merge remote-tracking branch 'origin/main' into debug-threaded-loop
2 parents 979617c + c77b1b9 commit 4a82dfd

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-22.04]
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1414
include:
1515
- os: macos-14
1616
python-version: "3.12"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@
2222
"Development Status :: 4 - Beta",
2323
"License :: OSI Approved :: BSD License",
2424
"Programming Language :: Python",
25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
2928
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
3030
"Framework :: Scrapy",
3131
"Intended Audience :: Developers",
3232
"Topic :: Internet :: WWW/HTTP",
3333
"Topic :: Software Development :: Libraries :: Application Frameworks",
3434
"Topic :: Software Development :: Libraries :: Python Modules",
3535
],
36-
python_requires=">=3.8",
36+
python_requires=">=3.9",
3737
install_requires=[
3838
"scrapy>=2.0,!=2.4.0",
3939
"playwright>=1.15",

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ deps =
77
pytest_cov==4.1.0
88
pytest_twisted==1.14
99
psutil==5.9.7
10-
playwright==1.44 # version must match the one installed with npm below
10+
playwright==1.48 # version must match the one installed with npm below
11+
greenlet==3.1.1
1112
allowlist_externals =
1213
npm
1314
npx
1415
commands =
1516
playwright install --with-deps
16-
npm install playwright@1.44
17+
npm install playwright@1.48
1718
npx playwright install chromium
1819
py.test -vv --reactor=asyncio \
1920
--cov-report=term-missing \

0 commit comments

Comments
 (0)