1
0
Fork 0

Merging upstream version 0.3.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-03-04 08:18:53 +01:00
parent 99298ed60e
commit 3d50637468
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
11 changed files with 2155 additions and 459 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "harlequin-odbc"
version = "0.2.0"
version = "0.3.0"
description = "A Harlequin adapter for ODBC drivers."
authors = ["Ted Conbeer <tconbeer@users.noreply.github.com>"]
license = "MIT"
@ -14,7 +14,7 @@ odbc = "harlequin_odbc:HarlequinOdbcAdapter"
[tool.poetry.dependencies]
python = ">=3.9,<3.14"
harlequin = ">=1.9.1,<3"
harlequin = ">=1.25,<3"
pyodbc = "^5.0"
[tool.poetry.group.dev.dependencies]
@ -30,13 +30,13 @@ build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py38"
target-version = "py39"
[tool.ruff.lint]
select = ["A", "B", "E", "F", "I"]
[tool.mypy]
python_version = "3.8"
python_version = "3.9"
files = [
"src/**/*.py",
"tests/**/*.py",