Skip to content

Commit

Permalink
Fix pymongo generated dependencies not updated in pymongo fix (apache…
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk authored and ambika-garg committed Jan 30, 2025
1 parent f717c63 commit d056a29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@
"deps": [
"apache-airflow>=2.9.0",
"dnspython>=1.13.0",
"pymongo>=4.0.0"
"pymongo>=4.0.0,!=4.11"
],
"devel-deps": [
"mongomock>=4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion providers/mongo/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ PIP package Version required
================== ==================
``apache-airflow`` ``>=2.9.0``
``dnspython`` ``>=1.13.0``
``pymongo`` ``>=4.0.0``
``pymongo`` ``>=4.0.0,!=4.11``
================== ==================

The changelog for the provider package can be found in the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ def get_provider_info():
"connection-types": [
{"hook-class-name": "airflow.providers.mongo.hooks.mongo.MongoHook", "connection-type": "mongo"}
],
"dependencies": ["apache-airflow>=2.9.0", "dnspython>=1.13.0", "pymongo>=4.0.0"],
"dependencies": ["apache-airflow>=2.9.0", "dnspython>=1.13.0", "pymongo>=4.0.0,!=4.11"],
"devel-dependencies": ["mongomock>=4.0.0"],
}

0 comments on commit d056a29

Please sign in to comment.