From 8d6093a3983dbbf98ebdb84daadef74445050dad Mon Sep 17 00:00:00 2001 From: Sam Wilson Date: Tue, 11 Feb 2025 18:39:09 -0500 Subject: [PATCH] Prepare to release --- setup.cfg | 12 +++++++++--- src/ethereum/__init__.py | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 1666e6b37f..0ec3656199 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] -name = ethereum -description = Ethereum specification, provided as a Python package for tooling and testing +name = ethereum-execution +description = Ethereum execution layer specification, provided as a Python package for tooling and testing long_description = file: README.md long_description_content_type = text/markdown version = attr: ethereum.__version__ @@ -9,6 +9,12 @@ license_files = LICENSE.md classifiers = License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: Implementation :: PyPy + Programming Language :: Python :: Implementation :: CPython + Intended Audience :: Developers + Natural Language :: English [options] packages = @@ -120,7 +126,7 @@ install_requires = pycryptodome>=3,<4 coincurve>=20,<21 typing_extensions>=4.2 - py_ecc @ git+https://github.com/petertdavies/py_ecc.git@127184f4c57b1812da959586d0fe8f43bb1a2389 + py-ecc>=8.0.0b2,<9 ethereum-types>=0.2.1,<0.3 ethereum-rlp>=0.1.1,<0.2 diff --git a/src/ethereum/__init__.py b/src/ethereum/__init__.py index f7eeebb47c..8b5958b584 100644 --- a/src/ethereum/__init__.py +++ b/src/ethereum/__init__.py @@ -18,7 +18,7 @@ """ import sys -__version__ = "0.1.0" +__version__ = "1.17.0rc6.dev1" # # Ensure we can reach 1024 frames of recursion