Skip to content

Commit

Permalink
add testing on Python 3.11
Browse files Browse the repository at this point in the history
Also update versioneer to 0.21 (with modifications to make it work with
2.6)
  • Loading branch information
tomato42 committed Jan 4, 2022
1 parent 8eb0731 commit 97fbf48
Show file tree
Hide file tree
Showing 5 changed files with 709 additions and 261 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ jobs:
os: ubuntu-latest
python-version: '3.10'
tox-env: gmpy2py310
- name: py3.11
os: ubuntu-latest
python-version: '3.11.0-alpha.3'
tox-env: py311
- name: pypy
os: ubuntu-latest
python-version: pypy-2.7
Expand Down
8 changes: 3 additions & 5 deletions src/ecdsa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,9 @@
InvalidSharedSecretError,
)
from .der import UnexpectedDER
from . import _version

# This code comes from http://github.com/tlsfuzzer/python-ecdsa
from ._version import get_versions

__version__ = get_versions()["version"]
del get_versions

__all__ = [
"curves",
"der",
Expand Down Expand Up @@ -90,3 +86,5 @@
six.b(""),
]
del _hush_pyflakes

__version__ = _version.get_versions()["version"]
Loading

0 comments on commit 97fbf48

Please sign in to comment.