Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased
- CI: Verified support on Python 3.13
- Dependencies: Updated to `crate-1.0.0`

## 2024/10/07 0.40.0
- Propagate error traces properly, using the `error_trace` `connect_args` option,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dynamic = [
]
dependencies = [
"backports.zoneinfo<1; python_version<'3.9'",
"crate==1.0.0.dev1",
"crate>=1.0.0.dev2,<2",
"geojson<4,>=2.5",
"importlib-resources; python_version<'3.9'",
"sqlalchemy<2.1,>=1",
Expand Down
3 changes: 2 additions & 1 deletion tests/query_caching.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
from unittest import TestCase, skipIf

import sqlalchemy as sa
from crate.testing.settings import crate_host
from sqlalchemy.orm import Session
from sqlalchemy.sql.operators import eq

Expand All @@ -36,6 +35,8 @@
except ImportError:
from sqlalchemy.ext.declarative import declarative_base

from tests.settings import crate_host


class SqlAlchemyQueryCompilationCaching(TestCase):
def setUp(self):
Expand Down