Skip to content

Commit 3d16222

Browse files
author
Bruno Grande
authored
Merge pull request #7 from Sage-Bionetworks-Workflows/bgrande/hotfix-package-name
Fix inconsistent package name
2 parents a3dac5e + a3637ff commit 3d16222

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Version 1.0.1
4+
5+
### Fixes
6+
7+
- Fix inconsistency between PyPI package name (py-orca) and Airflow provider package name (orca)
8+
39
## Version 1.0.0
410

511
### New Features

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)