Skip to content

Commit deaf5bd

Browse files
authored
Remove dep upper pins (#2648)
* Remove dependency upper limits * Add newsfragment * Doc test fix * Remove pins on dev dependencies * Remove pin for py-geth
1 parent 1604895 commit deaf5bd

File tree

3 files changed

+32
-31
lines changed

3 files changed

+32
-31
lines changed

docs/web3.net.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Properties
1313
The following properties are available on the ``web3.net`` namespace.
1414

1515
.. py:method:: listening
16-
:property:
16+
..py:property::
1717

1818
* Delegates to ``net_listening`` RPC method
1919

@@ -25,7 +25,7 @@ The following properties are available on the ``web3.net`` namespace.
2525
True
2626

2727
.. py:method:: peer_count
28-
:property:
28+
..py:property::
2929

3030
* Delegates to ``net_peerCount`` RPC method
3131

@@ -37,7 +37,7 @@ The following properties are available on the ``web3.net`` namespace.
3737
1
3838

3939
.. py:method:: version
40-
:property:
40+
..py:property::
4141

4242
* Delegates to ``net_version`` RPC Method
4343

newsfragments/2648.feature.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove upper pins on dependencies

setup.py

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,26 @@
77
extras_require = {
88
"tester": [
99
"eth-tester[py-evm]==v0.7.0-beta.1",
10-
"py-geth>=3.10.0,<4",
10+
"py-geth>=3.10.0",
1111
],
1212
"linter": [
13-
"black>=22.1.0,<23.0",
13+
"black>=22.1.0",
1414
"flake8==3.8.3",
1515
"isort>=4.2.15,<4.3.5",
1616
"mypy==0.910",
17-
"types-setuptools>=57.4.4,<58",
18-
"types-requests>=2.26.1,<3",
17+
"types-setuptools>=57.4.4",
18+
"types-requests>=2.26.1",
1919
"types-protobuf==3.19.13",
2020
],
2121
"docs": [
2222
"mock",
2323
"click>=5.1",
2424
"configparser==3.5.0",
2525
"contextlib2>=0.5.4",
26-
"py-geth>=3.9.1,<4",
26+
"py-geth>=3.9.1",
2727
"py-solc>=0.4.0",
28-
"pytest>=6.2.5,<7",
29-
"sphinx>=4.2.0,<5",
28+
"pytest>=6.2.5",
29+
"sphinx>=4.2.0",
3030
"sphinx_rtd_theme>=0.5.2",
3131
"toposort>=1.4",
3232
"towncrier==18.5.0",
@@ -35,21 +35,21 @@
3535
],
3636
"dev": [
3737
"bumpversion",
38-
"flaky>=3.7.0,<4",
39-
"hypothesis>=3.31.2,<6",
38+
"flaky>=3.7.0",
39+
"hypothesis>=3.31.2",
4040
"importlib-metadata<5.0;python_version<'3.8'",
41-
"pytest>=6.2.5,<7",
42-
"pytest-asyncio>=0.18.1,<0.19",
43-
"pytest-mock>=1.10,<2",
41+
"pytest>=6.2.5",
42+
"pytest-asyncio>=0.18.1",
43+
"pytest-mock>=1.10",
4444
"pytest-pythonpath>=0.3",
45-
"pytest-watch>=4.2,<5",
46-
"pytest-xdist>=1.29,<2",
45+
"pytest-watch>=4.2",
46+
"pytest-xdist>=1.29",
4747
"setuptools>=38.6.0",
4848
"tox>=1.8.0",
49-
"tqdm>4.32,<5",
50-
"twine>=1.13,<2",
49+
"tqdm>4.32",
50+
"twine>=1.13",
5151
"pluggy==0.13.1",
52-
"when-changed>=0.3.0,<0.4",
52+
"when-changed>=0.3.0",
5353
],
5454
}
5555

@@ -75,22 +75,22 @@
7575
url="https://github.com/ethereum/web3.py",
7676
include_package_data=True,
7777
install_requires=[
78-
"aiohttp>=3.7.4.post0,<4",
79-
"eth-abi>=3.0.0,<4.0.0",
80-
"eth-account>=0.7.0,<0.8.0",
81-
"eth-hash[pycryptodome]>=0.2.0,<1.0.0",
82-
"eth-typing>=3.0.0,<4.0.0",
83-
"eth-utils>=2.0.0,<3.0.0",
84-
"hexbytes>=0.1.0,<1.0.0",
78+
"aiohttp>=3.7.4.post0",
79+
"eth-abi>=3.0.0",
80+
"eth-account>=0.7.0",
81+
"eth-hash[pycryptodome]>=0.2.0",
82+
"eth-typing>=3.0.0",
83+
"eth-utils>=2.0.0",
84+
"hexbytes>=0.1.0",
8585
"ipfshttpclient==0.8.0a2",
86-
"jsonschema>=4.0.0,<5",
87-
"lru-dict>=1.1.6,<2.0.0",
86+
"jsonschema>=4.0.0",
87+
"lru-dict>=1.1.6",
8888
"protobuf>=4.21.6",
8989
"pywin32>=223;platform_system=='Windows'",
90-
"requests>=2.16.0,<3.0.0",
90+
"requests>=2.16.0",
9191
# remove typing_extensions after python_requires>=3.8, see web3._utils.compat
9292
"typing-extensions>=3.7.4.1,<5;python_version<'3.8'",
93-
"websockets>=10.0.0,<11",
93+
"websockets>=10.0.0",
9494
],
9595
python_requires=">=3.7.2",
9696
extras_require=extras_require,

0 commit comments

Comments
 (0)