py_ecc
py_ecc copied to clipboard
[WIP] Added type hinting
Fixes https://github.com/ethereum/py_ecc/issues/11 Totally fine tuned manually! automated tools not handling dynamic execution.
PR https://github.com/ethereum/py_ecc/pull/19 should fix ^^ above CI failures.
Looks like ci failures are some small linting errors, and failing due to python 2.7 not supporting type hints.
@carver I'm inclined to drop python 2 support. Can you confirm?
I'm inclined to drop python 2 support. Can you confirm?
Yeah, the next release can be v2 :+1:
@6ug looks like this needs to be rebased against master
@pipermerriam our last typing: Module not found
issue was due to - python3.4 does not have inbuilt support for PEP-484 type hinting, we need to externally add typing
in this case, https://github.com/ethereum/py_ecc/pull/18/commits/d86ca0e2afe7a69cc4b6b967bc81ba0b03a2db90 will fix that.
We should drop py3.4 as well, while we're dropping old python versions. Maybe even py3.5 too.
ping @6ug are you still working on this?