eth-owned

EIP-173 interface and tools for chainlib-eth
git clone git://holbrook.no/eth-owned.git
Log | Files | Refs

commit f53080026f3d1360666aeef3ff90d88dcba8689a
parent 6359f30af2fd0f436f9afce8c5417d8c2caf1f83
Author: lash <dev@holbrook.no>
Date:   Fri,  9 Jun 2023 10:28:44 +0100

Alias unittest interface class

Diffstat:
Mpython/eth_owned/unittest/__init__.py | 3+++
Mpython/eth_owned/unittest/interface.py | 1-
Mpython/setup.cfg | 6+++---
3 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/python/eth_owned/unittest/__init__.py b/python/eth_owned/unittest/__init__.py @@ -1,2 +1,5 @@ from .base import TestOwned from .interface import TestInterface + +TestERC173 = TestInterface +TestOwnedInterface = TestInterface diff --git a/python/eth_owned/unittest/interface.py b/python/eth_owned/unittest/interface.py @@ -124,6 +124,5 @@ class TestInterface: #(EthTesterCase): # r = self.conn.do(o) # self.assertEqual(r['status'], 0) - if __name__ == '__main__': unittest.main() diff --git a/python/setup.cfg b/python/setup.cfg @@ -1,10 +1,10 @@ [metadata] name = eth-owned -version = 0.1.1 +version = 0.1.2 description = EIP 173 interface and tools author = Louis Holbrook author_email = dev@holbrook.no -url = https://gitlab.com/cicnet/eth-owned +url = https://holbrook.no/src/eth-owned/log.html keywords = ethereum classifiers = @@ -23,7 +23,7 @@ licence_files = [options] include_package_data = True -python_requires = >= 3.7 +python_requires = >= 3.8 packages = eth_owned eth_owned.data