Skip to content

Commit 8aa6115

Browse files
committed
Merge PR #50
2 parents caa1ef9 + d951360 commit 8aa6115

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 5.0
2+
3+
This is a breaking release.
4+
5+
- Migrate project to new `pyproject.toml` standard from `setup.py`/`requirements.txt`.
6+
- As part of migration, top-level `__version__` variable was dropped from the package.
7+
- Support for Python 3.8 was dropped due to a breaking change in the way setuptools interpret the license keys in `pyproject.toml`.
8+
19
# 4.0
210

311
This is a breaking release.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This uses [`coincurve`](https://github.com/ofek/coincurve) as a wrapper for [`li
4444
# From the root of the repository
4545
python3 -m venv venv
4646
. venv/bin/activate
47-
pip install -r requirements.txt && pip install pytest
47+
pip install -r tests/requirements.txt && pip install pytest
4848
PYTHONPATH=$PYTHONPATH:$PWD/bip32 pytest -vvv
4949
```
5050

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bip32"
7-
version = "4.0.0"
7+
version = "5.0.0"
88
dependencies = [
99
"coincurve>=15.0,<21",
1010
]
11-
requires-python = ">=3.8"
11+
requires-python = ">=3.9"
1212
authors = [
1313
{name = "Antoine Poinsot", email = "[email protected]"},
1414
]

0 commit comments

Comments
 (0)