potiuk commented on PR #38062:
URL: https://github.com/apache/airflow/pull/38062#issuecomment-1994639723
> @potiuk @eladkal I added it to CI as well, wasn't so sure what version to
use, so I used some random versions. WDYT?
It will get longer and longer over time. I deally, we should do the same
what the release manager does - i.e use latest version. It's rather easy for
airflow - you could potentiallly add support for `latest` value and find latest
version from Pypi (already used in Breeze):
```python
response = requests.get("https://pypi.org/pypi/apache-airflow/json")
response.raise_for_status()
latest_released_version = response.json()["info"]["version"]
```
For Helm chart it shoud also be somewhat easy to get latest version ? I
leave that exercise to you
--
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]