Skip to content

Commit 85287a6

Browse files
committed
fixes
1 parent 1d515c6 commit 85287a6

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2024-2025 Rusty Conover <rusty@conover.me> - https://rusty.today
1+
Copyright 2024-2025 Rusty Conover <rusty@query.farm> - https://query.farm
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "query-farm-flight-server"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "A framework for building Arrow Flight servers for the DuckDB Airport extension with robust authentication, schema management, and data handling capabilities."
55
authors = [{ name = "Rusty Conover", email = "hello@query.farm" }]
66
dependencies = [

requirements-dev.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
-e file:.
1313
annotated-types==0.7.0
1414
# via pydantic
15-
boto3==1.39.3
15+
boto3==1.39.4
1616
# via moto
1717
# via query-farm-flight-server
18-
botocore==1.39.3
18+
botocore==1.39.4
1919
# via boto3
2020
# via moto
2121
# via s3transfer
2222
cache3==0.4.3
2323
# via query-farm-flight-server
24-
certifi==2025.6.15
24+
certifi==2025.7.9
2525
# via requests
2626
# via sentry-sdk
2727
cffi==1.17.1
@@ -52,7 +52,7 @@ levenshtein==0.27.1
5252
markupsafe==3.0.2
5353
# via jinja2
5454
# via werkzeug
55-
moto==5.1.6
55+
moto==5.1.8
5656
msgpack==1.1.1
5757
# via query-farm-flight-server
5858
mypy==1.16.1
@@ -103,7 +103,7 @@ requests==2.32.4
103103
# via responses
104104
responses==0.25.7
105105
# via moto
106-
ruff==0.12.2
106+
ruff==0.12.3
107107
s3transfer==0.13.0
108108
# via boto3
109109
sentry-sdk==2.32.0

requirements.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
-e file:.
1313
annotated-types==0.7.0
1414
# via pydantic
15-
boto3==1.39.3
15+
boto3==1.39.4
1616
# via query-farm-flight-server
17-
botocore==1.39.3
17+
botocore==1.39.4
1818
# via boto3
1919
# via s3transfer
2020
cache3==0.4.3
2121
# via query-farm-flight-server
22-
certifi==2025.6.15
22+
certifi==2025.7.9
2323
# via sentry-sdk
2424
click==8.2.1
2525
# via query-farm-flight-server

src/query_farm_flight_server/parameter_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class ChangeColumnType(AlterBase):
190190
_validate_column_schema = field_validator("column_schema", mode="before")(deserialize_schema)
191191

192192

193-
class ColumnStatistics(AlterBase):
193+
class ColumnStatistics(BaseModel):
194194
model_config = ConfigDict(arbitrary_types_allowed=True) # for Pydantic v2
195195
flight_descriptor: flight.FlightDescriptor
196196
column_name: str

0 commit comments

Comments
 (0)