Skip to content

Commit 4629565

Browse files
committed
Drop Python 3.9 support
1 parent a56b424 commit 4629565

5 files changed

Lines changed: 4 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
include:
16-
- python-version: "3.9"
17-
env:
18-
TOXENV: "msgpack"
19-
- python-version: "3.9"
20-
env:
21-
TOXENV: "json"
2216
- python-version: "3.10"
2317
env:
2418
TOXENV: "msgpack"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Client interface for Scrapinghub API
1414
.. image:: https://codecov.io/gh/scrapinghub/python-scrapinghub/branch/master/graph/badge.svg
1515
:target: https://app.codecov.io/gh/scrapinghub/python-scrapinghub
1616

17-
The ``scrapinghub`` is a Python 3.9+ library for communicating with the
17+
The ``scrapinghub`` is a Python 3.10+ library for communicating with the
1818
`Scrapinghub API`_.
1919

2020

docs/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Quickstart
44
Requirements
55
------------
66

7-
* Python 3.9+
7+
* Python 3.10+
88

99

1010
Installation

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,12 @@
2828
package_data={'scrapinghub': ['VERSION']},
2929
install_requires=['requests>=1.0', 'retrying>=1.3.3', 'six>=1.10.0'],
3030
extras_require={'msgpack': mpack_required},
31-
python_requires='>=3.9',
31+
python_requires='>=3.10',
3232
classifiers=[
3333
'Development Status :: 5 - Production/Stable',
3434
'License :: OSI Approved :: BSD License',
3535
'Operating System :: OS Independent',
3636
'Programming Language :: Python',
37-
'Programming Language :: Python :: 3.9',
3837
'Programming Language :: Python :: 3.10',
3938
'Programming Language :: Python :: 3.11',
4039
'Programming Language :: Python :: 3.12',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
requires =
88
sphinx-scrapy @ git+https://github.com/scrapy/sphinx-scrapy.git@999017c29b8bc213843e86e0e350a85c47493e34
99
# pypy3 excluded due to https://github.com/kevin1024/vcrpy/issues/885
10-
envlist = py{39,310,311,312}-{json,msgpack},docs
10+
envlist = py{310,311,312}-{json,msgpack},docs
1111

1212
[testenv]
1313
deps =

0 commit comments

Comments
 (0)