pankajkoti commented on code in PR #31309: URL: https://github.com/apache/airflow/pull/31309#discussion_r1194813662
########## setup.py: ########## @@ -16,6 +16,9 @@ # specific language governing permissions and limitations # under the License. """Setup.py for the Airflow project.""" +# This file can be modified if you want to make sure the CI build is using "upgrade to newer dependencies" +# Which is useful when you want to check if the dependencies are still compatible with the latest versions +# And they seem to break some unrelated tests in main. You can modify this number = 00001 to trigger it. Review Comment: ohh I guess I understood now what was meant here after reading the Slack message. Will it make sense to rephrase this to somewhat like the following? To make sure the CI build is using "upgrade to newer dependencies", which is useful when you want to check if the dependencies are still compatible with the latest versions as they seem to break some unrelated tests in main, you can modify this file. The modification can be simply modifying this particular comment. e.g. you can modify the following number 00001 to something else to trigger this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
