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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to