10000 Test with new pythons by tomato42 · Pull Request #282 · tlsfuzzer/python-ecdsa · GitHub
[go: up one dir, main page]

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 1 commit
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
Prev Previous commit
Next Next commit
add testing on Python 3.11
Also update versioneer to 0.21 (with modifications to make it work with
2.6)
  • Loading branch information
tomato42 committed Jan 4, 2022
commit 97fbf48e0e00cc2c1e1635f23a0d5a37b80167fc
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