Skip to content

Commit 214e430

Browse files
committed
chore: bump prague to stable and osaka to develop.
1 parent ad7cb1b commit 214e430

File tree

5 files changed

+11
-16
lines changed

5 files changed

+11
-16
lines changed

.github/configs/feature.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Unless filling for special features, all features should fill for previous forks (starting from Frontier) too
22
stable:
33
evm-type: stable
4-
fill-params: --until=Cancun
4+
fill-params: --until=Prague
55
solc: 0.8.21
66
develop:
77
evm-type: develop
8-
fill-params: --until=Prague
8+
fill-params: --until=Osaka
99
solc: 0.8.21
1010
static:
1111
evm-type: static
12-
fill-params: --until=Prague --fill-static-tests ./tests/static
12+
fill-params: --until=Osaka --fill-static-tests ./tests/static
1313
solc: 0.8.21
1414
zkevm_36M:
1515
evm-type: zkevm

docs/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ Test fixtures for use by clients are available for each release on the [Github r
99
### 💥 Breaking Changes
1010

1111
- Python 3.10 support was removed in this release ([#1808](https://github.com/ethereum/execution-spec-tests/pull/1808)).
12+
- Tests for the Prague fork are now marked as stable will be included in the `fixtures_stable.tar.gz` tarball from now on.
13+
- Tests for the Osaka fork are now included in the `fixtures_develop.tar.gz` tarball.
1214

13-
#### 💥 Important Change for `fill` Users
15+
### 💥 Important Change for `fill` Users
1416

1517
The output behavior of `fill` has changed ([#1608](https://github.com/ethereum/execution-spec-tests/pull/1608)):
1618

@@ -72,6 +74,7 @@ Users can select any of the artifacts depending on their testing needs for their
7274
- ✨ Added automatic checklist generation for every EIP inside of the `tests` folder. The checklist is appended to each EIP in the documentation in the "Test Case Reference" section ([#1679](https://github.com/ethereum/execution-spec-tests/pull/1679), [#1718](https://github.com/ethereum/execution-spec-tests/pull/1718)).
7375
- 🔀 Add macOS hive development mode workaround to the docs [#1786](https://github.com/ethereum/execution-spec-tests/pull/1786).
7476
- 🔀 Refactor and clean up of exceptions including EOF exceptions within client specific mappers [#1803](https://github.com/ethereum/execution-spec-tests/pull/1803).
77+
- 🔀 Move Prague to stable and Osaka to develop ([#1573](https://github.com/ethereum/execution-spec-tests/pull/1573)).
7578

7679
### 🧪 Test Cases
7780

src/ethereum_test_forks/forks/forks.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,14 +1092,6 @@ def valid_opcodes(
10921092
class Prague(Cancun):
10931093
"""Prague fork."""
10941094

1095-
@classmethod
1096-
def is_deployed(cls) -> bool:
1097-
"""
1098-
Flag that the fork has not been deployed to mainnet; it is under active
1099-
development.
1100-
"""
1101-
return False
1102-
11031095
@classmethod
11041096
def solc_min_version(cls) -> Version:
11051097
"""Return minimum version of solc that supports this fork."""

src/ethereum_test_forks/tests/test_forks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
from ..transition_base_fork import transition_fork
4242

4343
FIRST_DEPLOYED = Frontier
44-
LAST_DEPLOYED = Cancun
45-
LAST_DEVELOPMENT = Prague
46-
DEVELOPMENT_FORKS = [Prague]
44+
LAST_DEPLOYED = Prague
45+
LAST_DEVELOPMENT = Osaka
46+
DEVELOPMENT_FORKS = [Osaka]
4747

4848

4949
def test_transition_forks():

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ commands =
7777

7878

7979
[forks]
80-
develop = Prague
80+
develop = Osaka
8181
eip7692 = EOFv1
8282

8383
[testenv:tests-deployed]

0 commit comments

Comments
 (0)