File tree Expand file tree Collapse file tree 4 files changed +2
-13
lines changed
Expand file tree Collapse file tree 4 files changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ platformdirs==4.5.1
6161 # virtualenv
6262pluggy == 1.6.0
6363 # via tox
64- pycparser == 2.23
64+ pycparser == 3.0
6565 # via cffi
6666pygments == 2.19.2
6767 # via
Original file line number Diff line number Diff line change 22import re
33import threading
44from sqlalchemy import text
5- from sqlalchemy import util
65from sqlalchemy .dialects .postgresql .base import PGDialect
76from sqlalchemy .dialects .postgresql import ARRAY
87from sqlalchemy .dialects .postgresql import INET
98from sqlalchemy .dialects .postgresql import UUID
109from sqlalchemy .dialects .postgresql import JSONB
1110from sqlalchemy .ext .compiler import compiles
1211from sqlalchemy .util import warn
13- import sqlalchemy .sql as sql
1412
1513import sqlalchemy .types as sqltypes
1614
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ pygments==2.19.2
3232 # via pytest
3333pytest==9.0.2
3434 # via -r test-requirements.in
35- sqlalchemy==2.0.45
35+ sqlalchemy==2.0.46
3636 # via
3737 # -r test-requirements.in
3838 # alembic
Original file line number Diff line number Diff line change 1717 QuotedNameArgumentTest as _QuotedNameArgumentTest ,
1818)
1919from sqlalchemy .testing .suite import TrueDivTest as _TrueDivTest
20- from sqlalchemy .testing .suite import UnicodeSchemaTest as _UnicodeSchemaTest
2120
2221
2322class ComponentReflectionTest (_ComponentReflectionTest ):
@@ -503,11 +502,3 @@ def test_floordiv_integer(self):
503502 def test_floordiv_integer_bound (self ):
504503 # we return SELECT 15 / 10 as Decimal('1.5'), not Integer
505504 pass
506-
507-
508- class UnicodeSchemaTest (_UnicodeSchemaTest ):
509- @skip ("cockroachdb" )
510- def test_reflect (self , connection ):
511- # TODO: track down "AttributeError: 'NoneType' object has no attribute 'groups'"
512- # error in SQLA get_multi_foreign_keys
513- pass
You can’t perform that action at this time.
0 commit comments