Skip to content

Commit 71778e0

Browse files
committed
clean up dropping of py38
1 parent 78a0a0b commit 71778e0

File tree

8 files changed

+22
-37
lines changed

8 files changed

+22
-37
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ workflows:
221221
- common:
222222
matrix:
223223
parameters:
224-
python_minor_version: ["9", "10", "11", "12", "13"]
224+
python_minor_version: ["8", "9", "10", "11", "12", "13"]
225225
tox_env: [
226226
"lint",
227227
"core",
@@ -234,7 +234,7 @@ workflows:
234234
- geth:
235235
matrix:
236236
parameters:
237-
python_minor_version: ["9", "10", "11", "12", "13"]
237+
python_minor_version: ["8", "9", "10", "11", "12", "13"]
238238
tox_env: [
239239
"integration-goethereum-ipc",
240240
"integration-goethereum-ipc_async",

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
web3.py allows you to interact with the Ethereum blockchain using Python, enabling you to build decentralized applications, interact with smart contracts, and much more.
1212

13-
- Python 3.9+ support
13+
- Python 3.8+ support
1414

1515
## Installation
1616

docs/migration.rst

-25
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,6 @@
11
Migration Guide
22
===============
33

4-
.. _migrating_v7_to_v8:
5-
6-
Migrating from v7 to v8
7-
-----------------------
8-
9-
web3.py follows `Semantic Versioning <http://semver.org>`_, which means that
10-
version 8 introduced backwards-incompatible changes. If you're upgrading from
11-
web3.py ``v7``, you can expect to need to make some changes. Refer
12-
to this guide for a summary of breaking changes when updating from ``v7`` to
13-
``v8``. If you are more than one major version behind, you should also review
14-
the migration guides for the versions in between.
15-
16-
Dependency Updates
17-
~~~~~~~~~~~~~~~~~~
18-
19-
websockets
20-
``````````
21-
22-
The ``websockets`` library has been updated to version 15+. This version
23-
drops support for Python 3.8 and below. If you are using Python 3.8 or below,
24-
you will need to upgrade to Python 3.9 or above to use web3.py ``v8``. Additionally,
25-
the minimum required version of ``websockets`` has been bumped to ``15.0.0``. If you
26-
are using a version of ``websockets`` below ``15.0.0``, you will need to upgrade to
27-
``15.0.0`` or above to use web3.py ``v8``.
28-
294
.. _migrating_v6_to_v7:
305

316
Migrating from v6 to v7

newsfragments/3641.breaking.rst

-6
This file was deleted.

newsfragments/3653.misc.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump ``websockets`` upper range to ``<16``. For now, use legacy paths to deprecated classes in order to open up new version compatibility without breaking changes.

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@
7878
"requests>=2.23.0",
7979
"typing-extensions>=4.0.1",
8080
"types-requests>=2.0.0",
81-
"websockets>=15.0.0,<16.0.0",
81+
"websockets>=10.0.0,<16.0.0",
8282
"pyunormalize>=15.0.0",
8383
],
84-
python_requires=">=3.9, <4",
84+
python_requires=">=3.8, <4",
8585
extras_require=extras_require,
8686
py_modules=["web3", "ens"],
8787
license="MIT",
@@ -95,6 +95,7 @@
9595
"License :: OSI Approved :: MIT License",
9696
"Natural Language :: English",
9797
"Programming Language :: Python :: 3",
98+
"Programming Language :: Python :: 3.8",
9899
"Programming Language :: Python :: 3.9",
99100
"Programming Language :: Python :: 3.10",
100101
"Programming Language :: Python :: 3.11",

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ passenv =
4545
basepython =
4646
docs: python
4747
windows-wheel: python
48+
py38: python3.8
4849
py39: python3.9
4950
py310: python3.10
5051
py311: python3.11

web3/providers/persistent/request_processor.py

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import asyncio
2+
import sys
23
from typing import (
34
TYPE_CHECKING,
45
Any,
@@ -47,8 +48,20 @@
4748

4849
T = TypeVar("T")
4950

51+
# TODO: This is an ugly hack for python 3.8. Remove this after we drop support for it
52+
# and use `asyncio.Queue[T]` type directly in the `TaskReliantQueue` class.
53+
if sys.version_info >= (3, 9):
5054

51-
class TaskReliantQueue(asyncio.Queue[T], Generic[T]):
55+
class _TaskReliantQueue(asyncio.Queue[T], Generic[T]):
56+
pass
57+
58+
else:
59+
60+
class _TaskReliantQueue(asyncio.Queue, Generic[T]): # type: ignore
61+
pass
62+
63+
64+
class TaskReliantQueue(_TaskReliantQueue[T]):
5265
"""
5366
A queue that relies on a task to be running to process items in the queue.
5467
"""

0 commit comments

Comments
 (0)