Skip to content

Commit 7171cc5

Browse files
committed
Generate fixtures for geth v1.16.5
1 parent 2dced98 commit 7171cc5

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.2"
7+
default: "1.16.5"
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.2
379+
$ python -m geth.install v1.16.5
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.2/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py
385+
$ GETH_BINARY=~/.py-geth/geth-v1.16.5/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/3775.internal.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Use latest Geth version ``v1.16.5`` for integration tests.
-42.7 KB
Binary file not shown.
42.8 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.2-fixture.zip"
38+
GETH_FIXTURE_ZIP = "geth-1.16.5-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.2-fixture.zip"
27+
GETH_FIXTURE_ZIP = "geth-1.16.5-fixture.zip"
2828

2929

3030
class GethBenchmarkFixture:

0 commit comments

Comments
 (0)