Skip to content

Commit

Permalink
Fix 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Oct 29, 2023
1 parent 2f7ba23 commit f471f89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
# - "3.7"
# - "3.8"
# - "3.9"
# - "3.10"
# - "3.11"
- "3.12"
clickhouse-version:
- 22.5.1.2079
Expand Down
1 change: 1 addition & 0 deletions tests/types/test_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def test_insert_overflow(self):
# 'out of range' is raised from `struct` within
# `clickhouse_driver`,
# before the query is sent to CH.
print(ex.exception) # noqa: T201
self.assertTrue(
'out of range' in str(ex.exception) or
'Too many digits' in str(ex.exception)
Expand Down

0 comments on commit f471f89

Please sign in to comment.