Skip to content

Commit

Permalink
[MIG] mark all modules installable=False
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Nov 12, 2023
1 parent fecc1ef commit acd9187
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion base_rest/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
"apispec",
]
},
"installable": True,
"installable": False,
}
2 changes: 1 addition & 1 deletion base_rest_auth_api_key/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"website": "https://github.com/OCA/rest-framework",
"depends": ["base_rest", "auth_api_key"],
"maintainers": ["lmignon"],
"installable": True,
"installable": False,
"auto_install": True,
"external_dependencies": {
"python": [
Expand Down
2 changes: 1 addition & 1 deletion base_rest_datamodel/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"website": "https://github.com/OCA/rest-framework",
"depends": ["base_rest", "datamodel"],
"external_dependencies": {"python": ["apispec>=4.0.0", "marshmallow"]},
"installable": True,
"installable": False,
}
2 changes: 1 addition & 1 deletion base_rest_demo/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
"external_dependencies": {
"python": ["jsondiff", "extendable-pydantic", "marshmallow", "pydantic>=2.0.0"]
},
"installable": True,
"installable": False,
}
2 changes: 1 addition & 1 deletion base_rest_pydantic/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/rest-framework",
"depends": ["base_rest"],
"installable": True,
"installable": False,
"external_dependencies": {
"python": [
"pydantic>=2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion datamodel/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
"maintainers": ["lmignon"],
"website": "https://github.com/OCA/rest-framework",
"external_dependencies": {"python": ["marshmallow", "marshmallow-objects>=2.0.0"]},
"installable": True,
"installable": False,
}
2 changes: 1 addition & 1 deletion extendable/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"author": "ACSONE SA/NV, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/rest-framework",
"external_dependencies": {"python": ["extendable>=0.0.4"]},
"installable": True,
"installable": False,
}
2 changes: 1 addition & 1 deletion extendable_fastapi/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
"extendable-pydantic>=1.2.0",
],
},
"installable": True,
"installable": False,
}
1 change: 1 addition & 0 deletions fastapi/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@
]
},
"development_status": "Beta",
"installable": False,
}
1 change: 1 addition & 0 deletions fastapi_auth_jwt/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@
],
"data": [],
"demo": [],
"installable": False,
}
1 change: 1 addition & 0 deletions fastapi_auth_jwt_demo/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@
"depends": ["fastapi_auth_jwt", "auth_jwt_demo"],
"data": [],
"demo": ["demo/fastapi_endpoint.xml"],
"installable": False,
}
2 changes: 1 addition & 1 deletion graphql_base/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"external_dependencies": {"python": ["graphene", "graphql_server"]},
"development_status": "Production/Stable",
"maintainers": ["sbidoul"],
"installable": True,
"installable": False,
}
2 changes: 1 addition & 1 deletion graphql_demo/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"external_dependencies": {"python": ["graphene"]},
"development_status": "Beta",
"maintainers": ["sbidoul"],
"installable": True,
"installable": False,
}
2 changes: 1 addition & 1 deletion pydantic/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"external_dependencies": {
"python": ["pydantic", "contextvars", "typing-extensions"]
},
"installable": True,
"installable": False,
}

2 comments on commit acd9187

@ahaly-compass
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess these modules are not migrated yet, right?

@sbidoul
Copy link
Member Author

@sbidoul sbidoul commented on acd9187 Dec 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess these modules are not migrated yet, right?

@ahaly-compass yes. See the RE for the list with status.
See also #395

Please sign in to comment.