Skip to content

Commit

Permalink
Limit minimum version for aiosqlite to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
omkar-foss committed Nov 14, 2024
1 parent 1ea25df commit 74a86df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,8 @@
"edge": {
"deps": [
"apache-airflow>=2.10.0",
"pydantic>=2.6.4"
"pydantic>=2.6.4",
"aiosqlite>=0.5.0"
],
"devel-deps": [],
"plugins": [
Expand Down
1 change: 1 addition & 0 deletions hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@
# in order to make sure the dependency is not installed in the CI image build process from the main
# of Airflow branch. After your PR is merged, you should remove it from the list there.
DEPENDENCIES = [
"aiosqlite>=0.5.0",
# Alembic is important to handle our migrations in predictable and performant way. It is developed
# together with SQLAlchemy. Our experience with Alembic is that it very stable in minor version
# The 1.13.0 of alembic marked some migration code as SQLAlchemy 2+ only so we limit it to 1.13.1
Expand Down
1 change: 1 addition & 0 deletions providers/src/airflow/providers/edge/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ versions:
dependencies:
- apache-airflow>=2.10.0
- pydantic>=2.6.4
- aiosqlite>=0.5.0

plugins:
- name: edge_executor
Expand Down

0 comments on commit 74a86df

Please sign in to comment.