Skip to content

Commit e6e5b63

Browse files
authored
Update Geth to v1.16.2 (#3738)
* Move geth version from 1.16.1 -> 1.16.2 * Remove old fixture * Add newsfragment
1 parent d4e11b9 commit e6e5b63

File tree

7 files changed

+6
-5
lines changed

7 files changed

+6
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ parameters:
44
# NOTE: Do not update the `geth_version` manually. It is updated during the
55
# integration test fixture generation.
66
geth_version:
7-
default: "1.16.1"
7+
default: "1.16.2"
88
type: string
99
go_version:
1010
default: "1.24.1"

docs/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,13 +376,13 @@ Geth Fixtures
376376

377377
.. code:: sh
378378
379-
$ python -m geth.install v1.16.1
379+
$ python -m geth.install v1.16.2
380380
381381
2. Specify the Geth binary and run the fixture creation script (from within the web3.py directory):
382382

383383
.. code:: sh
384384
385-
$ GETH_BINARY=~/.py-geth/geth-v1.16.1/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py
385+
$ GETH_BINARY=~/.py-geth/geth-v1.16.2/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py
386386
387387
3. The output of this script is your fixture, a zip file, which is now stored in ``/tests/integration/``.
388388
The ``/tests/integration/go_ethereum/conftest.py`` and

newsfragments/1162.feature.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add testing against Geth v1.16.2
-45.6 KB
Binary file not shown.
42.7 KB
Binary file not shown.

tests/integration/go_ethereum/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
)
3636

3737
KEYFILE_PW = "web3py-test"
38-
GETH_FIXTURE_ZIP = "geth-1.16.1-fixture.zip"
38+
GETH_FIXTURE_ZIP = "geth-1.16.2-fixture.zip"
3939

4040

4141
@pytest.fixture

web3/tools/benchmark/node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
kill_proc_gracefully,
2525
)
2626

27-
GETH_FIXTURE_ZIP = "geth-1.16.1-fixture.zip"
27+
GETH_FIXTURE_ZIP = "geth-1.16.2-fixture.zip"
2828

2929

3030
class GethBenchmarkFixture:

0 commit comments

Comments
 (0)