Skip to content

Commit

Permalink
Merge pull request #7 from Sage-Bionetworks-Workflows/bgrande/hotfix-…
Browse files Browse the repository at this point in the history
…package-name

Fix inconsistent package name
  • Loading branch information
BrunoGrandePhD authored Feb 10, 2023
2 parents a3dac5e + a3637ff commit 3d16222
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 1.0.1

### Fixes

- Fix inconsistency between PyPI package name (py-orca) and Airflow provider package name (orca)

## Version 1.0.0

### New Features
Expand Down
3 changes: 1 addition & 2 deletions src/orca/airflow/provider_info.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from typing import Any

from orca import __name__ as package_name
from orca import __version__
from orca.services.sevenbridges.hook import SevenBridgesHook

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

0 comments on commit 3d16222

Please sign in to comment.