Skip to content

Commit

Permalink
Dependencies: Update to crate-1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 4, 2024
1 parent a27fac5 commit 7d39199
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
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",
"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

0 comments on commit 7d39199

Please sign in to comment.