Skip to content

Test with new pythons #282

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,23 @@ jobs:
os: ubuntu-latest
python-version: 3.9
tox-env: py39
- name: py3.9 with gmpy
- name: py3.10
os: ubuntu-latest
python-version: 3.9
tox-env: gmpypy39
- name: py3.9 with gmpy2
python-version: '3.10'
tox-env: py310
- name: py3.10 with gmpy
os: ubuntu-latest
python-version: 3.9
tox-env: gmpy2py39
python-version: '3.10'
tox-env: gmpypy310
- name: py3.10 with gmpy2
os: ubuntu-latest
python-version: '3.10'
tox-env: gmpy2py310
# Python 3.11a3 segfaults when running the test suite so skip it for now
#- 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