Skip to content

Commit

Permalink
Support Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkozlik committed Sep 3, 2024
1 parent bc35191 commit fa1f8fc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.1

- Support Python 3.8

## 1.0.0

- First release forked from Antoine Poinsot's python-bip32.
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
[tool.poetry]
name = "slip10"
version = "1.0.0"
version = "1.0.1"
description = "A reference implementation of the SLIP-0010 specification, which generalizes the BIP-0032 derivation scheme for private and public key pairs in hierarchical deterministic wallets for the curves secp256k1, NIST P-256, ed25519 and curve25519."
authors = ["Andrew R. Kozlik <[email protected]>"]
authors = ["Antoine Poinsot <[email protected]>", "Andrew R. Kozlik <[email protected]>"]
maintainers = ["Andrew R. Kozlik <[email protected]>"]
license = "MIT"
readme = [
"README.md",
"CHANGELOG.md",
]
repository = "https://github.com/trezor/python-slip10"
keywords = ["bitcoin", "slip10", "hdwallet"]

[tool.poetry.dependencies]
cryptography = "*"
ecdsa = "*"
base58 = "^2"
python = ">=3.9,<4.0"
python = ">=3.8,<4.0"

[tool.poetry.group.dev.dependencies]
pytest = "*"
Expand Down
4 changes: 3 additions & 1 deletion slip10/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import importlib.metadata

from .slip10 import SLIP10, InvalidInputError, PrivateDerivationError
from .utils import HARDENED_INDEX, SLIP10DerivationError

__version__ = "1.0.0"
__version__ = importlib.metadata.version(__package__ or __name__)

__all__ = [
"SLIP10",
Expand Down

0 comments on commit fa1f8fc

Please sign in to comment.