File tree 5 files changed +726
-267
lines changed
5 files changed +726
-267
lines changed Original file line number Diff line number Diff line change @@ -70,14 +70,23 @@ jobs:
70
70
os : ubuntu-latest
71
71
python-version : 3.9
72
72
tox-env : py39
73
- - name : py3.9 with gmpy
73
+ - name : py3.10
74
74
os : ubuntu-latest
75
- python-version : 3.9
76
- tox-env : gmpypy39
77
- - name : py3.9 with gmpy2
75
+ python-version : ' 3.10 '
76
+ tox-env : py310
77
+ - name : py3.10 with gmpy
78
78
os : ubuntu-latest
79
- python-version : 3.9
80
- tox-env : gmpy2py39
79
+ python-version : ' 3.10'
80
+ tox-env : gmpypy310
81
+ - name : py3.10 with gmpy2
82
+ os : ubuntu-latest
83
+ python-version : ' 3.10'
84
+ tox-env : gmpy2py310
85
+ # Python 3.11a3 segfaults when running the test suite so skip it for now
86
+ # - name: py3.11
87
+ # os: ubuntu-latest
88
+ # python-version: '3.11.0-alpha.3'
89
+ # tox-env: py311
81
90
- name : pypy
82
91
os : ubuntu-latest
83
92
python-version : pypy-2.7
Original file line number Diff line number Diff line change 37
37
InvalidSharedSecretError ,
38
38
)
39
39
from .der import UnexpectedDER
40
+ from . import _version
40
41
41
42
# 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
43
__all__ = [
48
44
"curves" ,
49
45
"der" ,
90
86
six .b ("" ),
91
87
]
92
88
del _hush_pyflakes
89
+
90
+ __version__ = _version .get_versions ()["version" ]
You can’t perform that action at this time.
0 commit comments