File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 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
311This is a breaking release.
Original file line number Diff line number Diff 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
4545python3 -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
4848PYTHONPATH=$PYTHONPATH:$PWD/bip32 pytest -vvv
4949```
5050
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " bip32"
7- version = " 4 .0.0"
7+ version = " 5 .0.0"
88dependencies = [
99 " coincurve>=15.0,<21" ,
1010]
11- requires-python = " >=3.8 "
11+ requires-python = " >=3.9 "
1212authors = [
1313 {
name =
" Antoine Poinsot" ,
email =
" [email protected] " },
1414]
You can’t perform that action at this time.
0 commit comments