Skip to content

Commit 364ee66

Browse files
committed
Remove 3.8, add 3.13, disable the PyPy CI
1 parent e65af20 commit 364ee66

File tree

13 files changed

+29
-43
lines changed

13 files changed

+29
-43
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 9 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.8"
17-
env:
18-
TOXENV: "msgpack"
19-
- python-version: "3.8"
20-
env:
21-
TOXENV: "json"
2216
- python-version: "3.9"
2317
env:
2418
TOXENV: "msgpack"
@@ -43,14 +37,21 @@ jobs:
4337
- python-version: "3.12"
4438
env:
4539
TOXENV: "json"
46-
47-
- python-version: "pypy3.10-v7.3.13"
40+
- python-version: "3.13"
4841
env:
4942
TOXENV: "msgpack"
50-
- python-version: "pypy3.10-v7.3.13"
43+
- python-version: "3.13"
5144
env:
5245
TOXENV: "json"
5346

47+
# https://github.com/kevin1024/vcrpy/issues/885
48+
# - python-version: "pypy3.11-v7.3.20"
49+
# env:
50+
# TOXENV: "msgpack"
51+
# - python-version: "pypy3.11-v7.3.20"
52+
# env:
53+
# TOXENV: "json"
54+
5455
steps:
5556
- uses: actions/checkout@v2
5657
- name: Set up Python ${{ matrix.python-version }}

.python-version

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
3.8
1+
system
2+
3.8.20
3+
pypy3.11-7.3.20

README.rst

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,8 @@ 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 library for communicating with the `Scrapinghub API`_.
18-
19-
20-
Requirements
21-
============
22-
23-
* Python 2.7 or Python 3.5+
17+
The ``scrapinghub`` is a Python 3.9+ library for communicating with the
18+
`Scrapinghub API`_.
2419

2520

2621
Installation

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 2.7 or above
7+
* Python 3.8+
88

99

1010
Installation

requirements-base.txt

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

requirements-docs.txt

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

requirements-pypy.txt

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

requirements-test.txt

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

requirements.txt

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@
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.8',
31+
python_requires='>=3.9',
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.8',
3837
'Programming Language :: Python :: 3.9',
3938
'Programming Language :: Python :: 3.10',
4039
'Programming Language :: Python :: 3.11',
4140
'Programming Language :: Python :: 3.12',
41+
'Programming Language :: Python :: 3.13',
4242
'Programming Language :: Python :: Implementation :: CPython',
4343
'Programming Language :: Python :: Implementation :: PyPy',
4444
'Topic :: Internet :: WWW/HTTP',

0 commit comments

Comments
 (0)