Skip to content

Commit df5935b

Browse files
committed
SQLA 2.0.46
1 parent 84dcd32 commit df5935b

File tree

4 files changed

+2
-13
lines changed

4 files changed

+2
-13
lines changed

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ platformdirs==4.5.1
6161
# virtualenv
6262
pluggy==1.6.0
6363
# via tox
64-
pycparser==2.23
64+
pycparser==3.0
6565
# via cffi
6666
pygments==2.19.2
6767
# via

sqlalchemy_cockroachdb/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
import re
33
import threading
44
from sqlalchemy import text
5-
from sqlalchemy import util
65
from sqlalchemy.dialects.postgresql.base import PGDialect
76
from sqlalchemy.dialects.postgresql import ARRAY
87
from sqlalchemy.dialects.postgresql import INET
98
from sqlalchemy.dialects.postgresql import UUID
109
from sqlalchemy.dialects.postgresql import JSONB
1110
from sqlalchemy.ext.compiler import compiles
1211
from sqlalchemy.util import warn
13-
import sqlalchemy.sql as sql
1412

1513
import sqlalchemy.types as sqltypes
1614

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pygments==2.19.2
3232
# via pytest
3333
pytest==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

test/test_suite_sqlalchemy.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
QuotedNameArgumentTest as _QuotedNameArgumentTest,
1818
)
1919
from sqlalchemy.testing.suite import TrueDivTest as _TrueDivTest
20-
from sqlalchemy.testing.suite import UnicodeSchemaTest as _UnicodeSchemaTest
2120

2221

2322
class 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

0 commit comments

Comments
 (0)