Issue
The URLs defined in pyproject.toml use the singular form of providers (airflow-provider-wherobots), which leads to broken URLs downstream when this metadata is used (PyPI, dependabot, etc.):
|
[project.urls] |
|
Homepage = "https://github.com/wherobots/airflow-provider-wherobots" |
|
Tracker = "https://github.com/wherobots/airflow-provider-wherobots" |
For example, when Dependabot attempts to link back to this repository it results in a 404:
Suggested Fix
[project.urls]
- Homepage = "https://github.com/wherobots/airflow-provider-wherobots"
+ Homepage = "https://github.com/wherobots/airflow-providers-wherobots"
- Tracker = "https://github.com/wherobots/airflow-provider-wherobots"
+ Tracker = "https://github.com/wherobots/airflow-providers-wherobots"
Issue
The URLs defined in
pyproject.tomluse the singular form ofproviders(airflow-provider-wherobots), which leads to broken URLs downstream when this metadata is used (PyPI, dependabot, etc.):airflow-providers-wherobots/pyproject.toml
Lines 13 to 15 in 908cf9c
For example, when Dependabot attempts to link back to this repository it results in a 404:
Suggested Fix