We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eb0731 commit 97fbf48Copy full SHA for 97fbf48
.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
@@ -37,13 +37,9 @@
37
InvalidSharedSecretError,
38
)
39
from .der import UnexpectedDER
40
+from . import _version
41
42
# This code comes from http://github.com/tlsfuzzer/python-ecdsa
-from ._version import get_versions
43
-
44
-__version__ = get_versions()["version"]
45
-del get_versions
46
47
__all__ = [
48
"curves",
49
"der",
@@ -90,3 +86,5 @@
six.b(""),
]
92
del _hush_pyflakes
+
+__version__ = _version.get_versions()["version"]
0 commit comments