Skip to content

Commit 575583e

Browse files
committed
Dependencies: Update to crate-1.0.0
1 parent a27fac5 commit 575583e

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Unreleased
44
- CI: Verified support on Python 3.13
5+
- Dependencies: Updated to `crate-1.0.0`
56

67
## 2024/10/07 0.40.0
78
- Propagate error traces properly, using the `error_trace` `connect_args` option,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ dynamic = [
8282
]
8383
dependencies = [
8484
"backports.zoneinfo<1; python_version<'3.9'",
85-
"crate==1.0.0.dev1",
85+
"crate>=1.0.0.dev2,<2",
8686
"geojson<4,>=2.5",
8787
"importlib-resources; python_version<'3.9'",
8888
"sqlalchemy<2.1,>=1",

tests/query_caching.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from unittest import TestCase, skipIf
2525

2626
import sqlalchemy as sa
27-
from crate.testing.settings import crate_host
2827
from sqlalchemy.orm import Session
2928
from sqlalchemy.sql.operators import eq
3029

@@ -36,6 +35,8 @@
3635
except ImportError:
3736
from sqlalchemy.ext.declarative import declarative_base
3837

38+
from tests.settings import crate_host
39+
3940

4041
class SqlAlchemyQueryCompilationCaching(TestCase):
4142
def setUp(self):

0 commit comments

Comments
 (0)