You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/10/14 11:02:20 UTC

[GitHub] [airflow] ephraimbuddy commented on pull request #27054: Remove info log about closing parent pipe

ephraimbuddy commented on PR #27054:
URL: https://github.com/apache/airflow/pull/27054#issuecomment-1278854402

   I don't think there's anything we can do about this trivy scan right now for dev. It won't be there on the final image. Here's my simple test:
   ```python
   
   >>> from packaging.version import Version
   >>> x = Version('2.3.4.dev0+astro.1')
   >>> y = Version('2.3.4')
   >>> x>y
   False
   >>> y>x
   True
   >>> k = Version('2.3.4+astro.1')
   >>> k>y
   True
   >>> 
   ```
   When we have `dev`, it will be less than 'rc' and 'main release'


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org