We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eb0731 commit 990c435Copy full SHA for 990c435
.github/workflows/ci.yml
@@ -82,6 +82,10 @@ jobs:
82
os: ubuntu-latest
83
python-version: '3.10'
84
tox-env: gmpy2py310
85
+ - name: py3.11
86
+ os: ubuntu-latest
87
+ python-version: '3.11.0-alpha.3'
88
+ tox-env: py311
89
- name: pypy
90
91
python-version: pypy-2.7
src/ecdsa/__init__.py
@@ -39,11 +39,6 @@
39
from .der import UnexpectedDER
40
41
# This code comes from http://github.com/tlsfuzzer/python-ecdsa
42
-from ._version import get_versions
43
-
44
-__version__ = get_versions()["version"]
45
-del get_versions
46
47
__all__ = [
48
"curves",
49
"der",
@@ -90,3 +85,7 @@
six.b(""),
]
92
del _hush_pyflakes
+
+from . import _version
+__version__ = _version.get_versions()["version"]
0 commit comments