Skip to content

Commit 3184c50

Browse files
committed
geth 1.10.5 fixture update
1 parent bc461a5 commit 3184c50

File tree

8 files changed

+21
-20
lines changed

8 files changed

+21
-20
lines changed

.circleci/config.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ geth_steps: &geth_steps
109109
name: build geth if missing
110110
command: |
111111
mkdir -p $HOME/.ethash
112-
pip install --user py-geth>=3.2.0
112+
pip install --user py-geth>=3.3.0
113113
export GOROOT=/usr/local/go
114114
echo $GETH_VERSION
115115
export GETH_BINARY="$HOME/.py-geth/geth-$GETH_VERSION/bin/geth"
@@ -287,23 +287,23 @@ jobs:
287287
- image: circleci/python:3.6
288288
environment:
289289
TOXENV: py36-integration-goethereum-ipc
290-
GETH_VERSION: v1.10.4
290+
GETH_VERSION: v1.10.5
291291

292292
py36-integration-goethereum-http:
293293
<<: *geth_steps
294294
docker:
295295
- image: circleci/python:3.6
296296
environment:
297297
TOXENV: py36-integration-goethereum-http
298-
GETH_VERSION: v1.10.4
298+
GETH_VERSION: v1.10.5
299299

300300
py36-integration-goethereum-ws:
301301
<<: *geth_steps
302302
docker:
303303
- image: circleci/python:3.6
304304
environment:
305305
TOXENV: py36-integration-goethereum-ws
306-
GETH_VERSION: v1.10.4
306+
GETH_VERSION: v1.10.5
307307

308308
# py36-integration-parity-ipc:
309309
# <<: *parity_steps
@@ -379,23 +379,23 @@ jobs:
379379
- image: circleci/python:3.7
380380
environment:
381381
TOXENV: py37-integration-goethereum-ipc
382-
GETH_VERSION: v1.10.4
382+
GETH_VERSION: v1.10.5
383383

384384
py37-integration-goethereum-http:
385385
<<: *geth_steps
386386
docker:
387387
- image: circleci/python:3.7
388388
environment:
389389
TOXENV: py37-integration-goethereum-http
390-
GETH_VERSION: v1.10.4
390+
GETH_VERSION: v1.10.5
391391

392392
py37-integration-goethereum-ws:
393393
<<: *geth_steps
394394
docker:
395395
- image: circleci/python:3.7
396396
environment:
397397
TOXENV: py37-integration-goethereum-ws
398-
GETH_VERSION: v1.10.4
398+
GETH_VERSION: v1.10.5
399399

400400
# py37-integration-parity-ipc:
401401
# <<: *parity_steps
@@ -476,23 +476,23 @@ jobs:
476476
- image: circleci/python:3.8
477477
environment:
478478
TOXENV: py38-integration-goethereum-ipc
479-
GETH_VERSION: v1.10.4
479+
GETH_VERSION: v1.10.5
480480

481481
py38-integration-goethereum-http:
482482
<<: *geth_steps
483483
docker:
484484
- image: circleci/python:3.8
485485
environment:
486486
TOXENV: py38-integration-goethereum-http
487-
GETH_VERSION: v1.10.4
487+
GETH_VERSION: v1.10.5
488488

489489
py38-integration-goethereum-ws:
490490
<<: *geth_steps
491491
docker:
492492
- image: circleci/python:3.8
493493
environment:
494494
TOXENV: py38-integration-goethereum-ws
495-
GETH_VERSION: v1.10.4
495+
GETH_VERSION: v1.10.5
496496

497497
# py38-integration-parity-ipc:
498498
# <<: *parity_steps
@@ -568,23 +568,23 @@ jobs:
568568
- image: circleci/python:3.9
569569
environment:
570570
TOXENV: py39-integration-goethereum-ipc
571-
GETH_VERSION: v1.10.4
571+
GETH_VERSION: v1.10.5
572572

573573
py39-integration-goethereum-http:
574574
<<: *geth_steps
575575
docker:
576576
- image: circleci/python:3.9
577577
environment:
578578
TOXENV: py39-integration-goethereum-http
579-
GETH_VERSION: v1.10.4
579+
GETH_VERSION: v1.10.5
580580

581581
py39-integration-goethereum-ws:
582582
<<: *geth_steps
583583
docker:
584584
- image: circleci/python:3.9
585585
environment:
586586
TOXENV: py39-integration-goethereum-ws
587-
GETH_VERSION: v1.10.4
587+
GETH_VERSION: v1.10.5
588588

589589
# py39-integration-parity-ipc:
590590
# <<: *parity_steps
@@ -634,7 +634,7 @@ jobs:
634634
- image: circleci/python:3.9
635635
environment:
636636
TOXENV: benchmark
637-
GETH_VERSION: v1.10.4
637+
GETH_VERSION: v1.10.5
638638

639639
workflows:
640640
version: 2.1

docs/contributing.rst

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

310310
.. code:: sh
311311
312-
$ python -m geth.install v1.10.4
312+
$ python -m geth.install v1.10.5
313313
314314
2. Specify the Geth binary and run the fixture creation script (from within the web3.py directory):
315315

316316
.. code:: sh
317317
318-
$ GETH_BINARY=~/.py-geth/geth-v1.10.4/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py ./tests/integration/geth-1.10.4-fixture
318+
$ GETH_BINARY=~/.py-geth/geth-v1.10.5/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py ./tests/integration/geth-1.10.5-fixture
319319
320320
3. The output of this script is your fixture, a zip file, which is now stored in ``/tests/integration/``.
321321
Update the ``/tests/integration/go_ethereum/conftest.py`` file to point to this new fixture. Delete the old fixture.

newsfragments/2073.misc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Support for geth v1.10.5

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
extras_require = {
99
'tester': [
1010
"eth-tester[py-evm]==v0.5.0-beta.4",
11-
"py-geth>=3.2.0,<4",
11+
"py-geth>=3.3.0,<4",
1212
],
1313
'linter': [
1414
"flake8==3.8.3",
@@ -21,7 +21,7 @@
2121
"click>=5.1",
2222
"configparser==3.5.0",
2323
"contextlib2>=0.5.4",
24-
"py-geth>=3.2.0,<4",
24+
"py-geth>=3.3.0,<4",
2525
"py-solc>=0.4.0",
2626
"pytest>=4.4.0,<5.0.0",
2727
"sphinx>=3.0,<4",
-37.4 KB
Binary file not shown.
36.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
@@ -19,7 +19,7 @@
1919

2020
KEYFILE_PW = 'web3py-test'
2121

22-
GETH_FIXTURE_ZIP = 'geth-1.10.4-fixture.zip'
22+
GETH_FIXTURE_ZIP = 'geth-1.10.5-fixture.zip'
2323

2424

2525
@pytest.fixture(scope='module')

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.10.4-fixture.zip"
27+
GETH_FIXTURE_ZIP = "geth-1.10.5-fixture.zip"
2828

2929

3030
class GethBenchmarkFixture:

0 commit comments

Comments
 (0)