Bug
After the v3.2.0 release (merged via #761), pyproject.toml was bumped to 3.2.0 but mempalace/version.py still reads 3.1.0.
This causes tests/test_version_consistency.py to fail on every PR that targets develop:
AssertionError: assert '3.1.0' == '3.2.0'
Steps to reproduce
git checkout develop
grep __version__ mempalace/version.py # 3.1.0
grep '^version' pyproject.toml # 3.2.0
Fix
Bump version.py to 3.2.0 in develop:
All open PRs targeting develop currently need a workaround commit to fix this.
Bug
After the v3.2.0 release (merged via #761),
pyproject.tomlwas bumped to3.2.0butmempalace/version.pystill reads3.1.0.This causes
tests/test_version_consistency.pyto fail on every PR that targetsdevelop:Steps to reproduce
Fix
Bump
version.pyto3.2.0indevelop:All open PRs targeting
developcurrently need a workaround commit to fix this.