Skip to content

Commit

Permalink
Merge pull request #1178 from jakob-keller/test-pep440
Browse files Browse the repository at this point in the history
Ensure `aiobotocore.__version__` is in canonical form (#1177)
  • Loading branch information
jakob-keller authored Aug 23, 2024
2 parents 51d471d + 770bc3b commit 3e33588
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 3e33588

Please sign in to comment.