Skip to content

Commit 0a92be7

Browse files
committed
Bump version to v2.18.0rc3.dev1
1 parent e3eb03b commit 0a92be7

File tree

4 files changed

+2
-80
lines changed

4 files changed

+2
-80
lines changed

.github/workflows/test.yaml

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -28,38 +28,6 @@ jobs:
2828
- name: Run static checks
2929
run: tox -e static
3030

31-
py3:
32-
runs-on: [self-hosted-ghr, size-xl-x64]
33-
needs: static
34-
steps:
35-
- uses: actions/checkout@v4
36-
with:
37-
submodules: recursive
38-
- name: Setup Python
39-
uses: actions/setup-python@v5
40-
with:
41-
python-version: "3.11"
42-
- uses: ./.github/actions/setup-env
43-
- name: Run py3 tests
44-
run: tox -e py3
45-
46-
pypy3:
47-
runs-on: [self-hosted-ghr, size-xl-x64]
48-
needs: static
49-
steps:
50-
- uses: actions/checkout@v4
51-
with:
52-
submodules: recursive
53-
- name: Setup Python
54-
uses: actions/setup-python@v5
55-
with:
56-
python-version: "pypy3.11"
57-
- uses: ./.github/actions/setup-env
58-
- name: Run pypy3 tests
59-
run: tox -e pypy3
60-
env:
61-
PYPY_GC_MAX: "10G"
62-
6331
json_infra:
6432
runs-on: [self-hosted-ghr, size-xl-x64]
6533
needs: static

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ dependencies = [
2626
"ethereum-types>=0.2.4,<0.3",
2727
"ethereum-rlp>=0.1.4,<0.2",
2828
"cryptography>=45.0.1,<46",
29-
"ethereum-execution-spec-tests @ git+https://github.com/ethereum/execution-spec-tests@0fdd974b0968e443ef5878430ba5194c43149a4b",
30-
"ethereum-spec-evm-resolver @ git+https://github.com/petertdavies/ethereum-spec-evm-resolver",
3129
]
3230

3331
[tool.setuptools]

src/ethereum/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"""
1919
import sys
2020

21-
__version__ = "2.18.0rc2"
21+
__version__ = "2.18.0rc3.dev1"
2222

2323
#
2424
# Ensure we can reach 1024 frames of recursion

tox.ini

Lines changed: 1 addition & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
min_version = 2.0
3-
envlist = py3,pypy3,json_infra,static
3+
envlist = json_infra,static
44

55
[testenv:static]
66
extras =
@@ -33,50 +33,6 @@ commands =
3333
--basetemp="{temp_dir}/pytest" \
3434
tests
3535

36-
[testenv:py3]
37-
extras =
38-
test
39-
commands =
40-
fill \
41-
-m "not slow and not zkevm and not benchmark" \
42-
-n auto --maxprocesses 6 \
43-
--basetemp="{temp_dir}/pytest" \
44-
--clean \
45-
eest_tests/execution-spec-tests/tests
46-
fill \
47-
-m "not slow and not zkevm and not benchmark" \
48-
-n auto --maxprocesses 6 \
49-
--basetemp="{temp_dir}/pytest" \
50-
--clean \
51-
--fork Osaka \
52-
eest_tests/execution-spec-tests/tests/osaka
53-
54-
[testenv:pypy3]
55-
extras =
56-
test
57-
passenv =
58-
PYPY_GC_MAX
59-
commands =
60-
fill \
61-
--tb=no \
62-
--show-capture=no \
63-
--disable-warnings \
64-
-m "not slow and not zkevm and not benchmark" \
65-
-n auto --maxprocesses 3 \
66-
--basetemp="{temp_dir}/pytest" \
67-
--clean \
68-
eest_tests/execution-spec-tests/tests
69-
fill \
70-
--tb=no \
71-
--show-capture=no \
72-
--disable-warnings \
73-
-m "not slow and not zkevm and not benchmark" \
74-
-n auto --maxprocesses 3 \
75-
--basetemp="{temp_dir}/pytest" \
76-
--clean \
77-
--fork Osaka \
78-
eest_tests/execution-spec-tests/tests/osaka
79-
8036
[testenv:optimized]
8137
extras =
8238
test

0 commit comments

Comments
 (0)