Skip to content

Commit 997e3b9

Browse files
author
Bruno Grande
committed
Fix inconsistent package name
1 parent a3dac5e commit 997e3b9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/orca/airflow/provider_info.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from typing import Any
22

3-
from orca import __name__ as package_name
43
from orca import __version__
54
from orca.services.sevenbridges.hook import SevenBridgesHook
65

@@ -31,7 +30,7 @@ def get_provider_info() -> dict[str, Any]:
3130
https://github.com/apache/airflow/blob/main/airflow/provider_info.schema.json
3231
"""
3332
return {
34-
"package-name": package_name,
33+
"package-name": "py-orca",
3534
"versions": [__version__],
3635
"name": "ORCA Airflow Provider (Sage Bionetworks)",
3736
"description": "Package for connecting services and building data pipelines.",

0 commit comments

Comments
 (0)