Skip to content

Commit

Permalink
Add restriction to py 3.8 and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Jul 22, 2024
1 parent 921145c commit 6ea0141
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/models/manager/test_decimal.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
from decimal import Decimal
from typing import AsyncGenerator

Expand Down Expand Up @@ -44,6 +45,7 @@ async def test_decimal_128_two() -> None:
assert float(str(arch.price)) == 22.246


@pytest.mark.skipif(sys.version_info < (3, 10), reason="zip() implementation refactored in 3.10+")
async def test_decimal_128_create_many() -> None:
archives = []
archive_names = ("The Dark Knight", "The Dark Knight Rises", "The Godfather")
Expand Down

0 comments on commit 6ea0141

Please sign in to comment.