Skip to content

Remove dep upper pins #2648

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/web3.net.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Properties
The following properties are available on the ``web3.net`` namespace.

.. py:method:: listening
:property:
..py:property::

* Delegates to ``net_listening`` RPC method

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

.. py:method:: peer_count
:property:
..py:property::

* Delegates to ``net_peerCount`` RPC method

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

.. py:method:: version
:property:
..py:property::

* Delegates to ``net_version`` RPC Method

Expand Down
1 change: 1 addition & 0 deletions newsfragments/2648.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove upper pins on dependencies
56 changes: 28 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@
extras_require = {
"tester": [
"eth-tester[py-evm]==v0.7.0-beta.1",
"py-geth>=3.10.0,<4",
"py-geth>=3.10.0",
],
"linter": [
"black>=22.1.0,<23.0",
"black>=22.1.0",
"flake8==3.8.3",
"isort>=4.2.15,<4.3.5",
"mypy==0.910",
"types-setuptools>=57.4.4,<58",
"types-requests>=2.26.1,<3",
"types-setuptools>=57.4.4",
"types-requests>=2.26.1",
"types-protobuf==3.19.13",
],
"docs": [
"mock",
"click>=5.1",
"configparser==3.5.0",
"contextlib2>=0.5.4",
"py-geth>=3.9.1,<4",
"py-geth>=3.9.1",
"py-solc>=0.4.0",
"pytest>=6.2.5,<7",
"sphinx>=4.2.0,<5",
"pytest>=6.2.5",
"sphinx>=4.2.0",
"sphinx_rtd_theme>=0.5.2",
"toposort>=1.4",
"towncrier==18.5.0",
Expand All @@ -35,21 +35,21 @@
],
"dev": [
"bumpversion",
"flaky>=3.7.0,<4",
"hypothesis>=3.31.2,<6",
"flaky>=3.7.0",
"hypothesis>=3.31.2",
"importlib-metadata<5.0;python_version<'3.8'",
"pytest>=6.2.5,<7",
"pytest-asyncio>=0.18.1,<0.19",
"pytest-mock>=1.10,<2",
"pytest>=6.2.5",
"pytest-asyncio>=0.18.1",
"pytest-mock>=1.10",
"pytest-pythonpath>=0.3",
"pytest-watch>=4.2,<5",
"pytest-xdist>=1.29,<2",
"pytest-watch>=4.2",
"pytest-xdist>=1.29",
"setuptools>=38.6.0",
"tox>=1.8.0",
"tqdm>4.32,<5",
"twine>=1.13,<2",
"tqdm>4.32",
"twine>=1.13",
"pluggy==0.13.1",
"when-changed>=0.3.0,<0.4",
"when-changed>=0.3.0",
],
}

Expand All @@ -75,22 +75,22 @@
url="https://github.com/ethereum/web3.py",
include_package_data=True,
install_requires=[
"aiohttp>=3.7.4.post0,<4",
"eth-abi>=3.0.0,<4.0.0",
"eth-account>=0.7.0,<0.8.0",
"eth-hash[pycryptodome]>=0.2.0,<1.0.0",
"eth-typing>=3.0.0,<4.0.0",
"eth-utils>=2.0.0,<3.0.0",
"hexbytes>=0.1.0,<1.0.0",
"aiohttp>=3.7.4.post0",
"eth-abi>=3.0.0",
"eth-account>=0.7.0",
"eth-hash[pycryptodome]>=0.2.0",
"eth-typing>=3.0.0",
"eth-utils>=2.0.0",
"hexbytes>=0.1.0",
"ipfshttpclient==0.8.0a2",
"jsonschema>=4.0.0,<5",
"lru-dict>=1.1.6,<2.0.0",
"jsonschema>=4.0.0",
"lru-dict>=1.1.6",
"protobuf>=4.21.6",
"pywin32>=223;platform_system=='Windows'",
"requests>=2.16.0,<3.0.0",
"requests>=2.16.0",
# remove typing_extensions after python_requires>=3.8, see web3._utils.compat
"typing-extensions>=3.7.4.1,<5;python_version<'3.8'",
"websockets>=10.0.0,<11",
"websockets>=10.0.0",
],
python_requires=">=3.7.2",
extras_require=extras_require,
Expand Down