You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, all subdirectories of airflow/providers were enumerated in the pyproject.toml, but it looks like a few were added to the codebase over time but not to the list in pyproject.toml, leading to some import-categorization drift (as visible in the below changes).
Ruff allows for namespace packages to be enumerated directly, which will ensure that future packages are handled consistently without any need to update the pyproject.toml.
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contribution Guide (https://github.com/apache/airflow/blob/main/CONTRIBUTING.rst)
Here are some useful points:
Pay attention to the quality of your code (ruff, mypy and type annotations). Our pre-commits will help you with that.
In case of a new feature add useful documentation (in docstrings or in docs/ directory). Adding a new operator? Check this short guide Consider adding an example DAG that shows how users should use it.
Consider using Breeze environment for testing locally, it's a heavy docker but it ships with a working Airflow and a lot of integrations.
Be patient and persistent. It might take some time to get a review or get the final approval from Committers.
Please follow ASF Code of Conduct for all communication including (but not limited to) comments on Pull Requests, Mailing list and Slack.
The apache#32873 has been merged without merging and commiting breeze's hash
accounting for changed dependencies, breaking unit tests of breeze.
This PR brings hash of breeze back adter running `breeze setup version`
manually and commiting the changed hash.
The #32873 has been merged without merging and commiting breeze's hash
accounting for changed dependencies, breaking unit tests of breeze.
This PR brings hash of breeze back adter running `breeze setup version`
manually and commiting the changed hash.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
👋 This PR removes the
known-third-partyandknown-first-partysettings from Airflow's Ruff configuration with a singlenamespace-packagesentry.Previously, all subdirectories of
airflow/providerswere enumerated in thepyproject.toml, but it looks like a few were added to the codebase over time but not to the list inpyproject.toml, leading to some import-categorization drift (as visible in the below changes).Ruff allows for namespace packages to be enumerated directly, which will ensure that future packages are handled consistently without any need to update the
pyproject.toml.