Skip to content

Commit

Permalink
ensure aiobotocore.__version__ is in canonical form (aio-libs#1177)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-keller authored and chemelli74 committed Aug 29, 2024
1 parent 402c4a4 commit 896d1d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ def test_release_versions():
# ensures versions in CHANGES.rst + __init__.py match
init_version = version.parse(aiobotocore.__version__)

# the init version should be in canonical from
assert str(init_version) == aiobotocore.__version__

changes_path = _root_path / 'CHANGES.rst'

with changes_path.open('r') as f:
Expand Down

0 comments on commit 896d1d2

Please sign in to comment.