Skip to content
Closed
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
2 changes: 2 additions & 0 deletions Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -1067,6 +1067,8 @@ EOF
# The content below is automatically copied from scripts/docker/entrypoint_ci.sh
COPY <<"EOF" /entrypoint_ci.sh
#!/usr/bin/env bash
export SQLALCHEMY_ENGINE_DEBUG="true"

function set_verbose() {
if [[ ${VERBOSE_COMMANDS:="false"} == "true" ]]; then
set -x
Expand Down
4 changes: 2 additions & 2 deletions airflow-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ dependencies = [
"rich-argparse>=1.0.0",
"rich>=13.6.0",
"setproctitle>=1.3.3",
# The issue tracking deprecations for sqlalchemy 2 is https://github.com/apache/airflow/issues/28723
"sqlalchemy[asyncio]>=1.4.49",
# SQLAlchemy >=2.0.36 fixes Python 3.13 TypingOnly import AssertionError caused by new typing attributes (__static_attributes__, __firstlineno__)
"sqlalchemy[asyncio]>=2.0.36",
"sqlalchemy-jsonfield>=1.0",
"sqlalchemy-utils>=0.41.2",
"svcs>=25.1.0",
Expand Down
1 change: 0 additions & 1 deletion providers/fab/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ PIP package Version required
``flask-session`` ``>=0.8.0; python_version < "3.13"``
``msgpack`` ``>=1.0.0; python_version < "3.13"``
``flask-sqlalchemy`` ``>=3.0.5; python_version < "3.13"``
``sqlalchemy`` ``>=1.4.36,<2; python_version < "3.13"``
``flask-wtf`` ``>=1.1.0; python_version < "3.13"``
``connexion[flask]`` ``>=2.14.2,<3.0; python_version < "3.13"``
``jmespath`` ``>=0.7.0; python_version < "3.13"``
Expand Down
3 changes: 0 additions & 3 deletions providers/fab/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,9 @@ dependencies = [
# In particular, make sure any breaking changes, for example any new methods, are accounted for.
"flask-appbuilder==5.0.1; python_version < '3.13'",
"flask-login>=0.6.2; python_version < '3.13'",
# Flask-Session 0.6 add new arguments into the SqlAlchemySessionInterface constructor as well as
# all parameters now are mandatory which make AirflowDatabaseSessionInterface incompatible with this version.
"flask-session>=0.8.0; python_version < '3.13'",
"msgpack>=1.0.0; python_version < '3.13'",
"flask-sqlalchemy>=3.0.5; python_version < '3.13'",
"sqlalchemy>=1.4.36,<2; python_version < '3.13'",
"flask-wtf>=1.1.0; python_version < '3.13'",
"connexion[flask]>=2.14.2,<3.0; python_version < '3.13'",
"jmespath>=0.7.0; python_version < '3.13'",
Expand Down
2 changes: 2 additions & 0 deletions scripts/docker/entrypoint_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
export SQLALCHEMY_ENGINE_DEBUG="true"

function set_verbose() {
if [[ ${VERBOSE_COMMANDS:="false"} == "true" ]]; then
set -x
Expand Down
Loading