Use more recent Python packages #4735
Labels
dotnet-helix-machines
Ops - Service Maintenance
Used to track issues related to maintaining the services .NET Eng Supports
Uh oh!
There was an error while loading. Please reload this page.
we have a large number of fixed Python package versions in our runtime_python_requirements.txt file as well as a few compatibility (
~=
) and bound (>=
or>=...<=
) ranges. the impact of this is we're falling behind Python package deprecations. it's also inconsistentfor example, discovered our
docker
package version (v3.7.2) is from 2019 while working on #4307.fix for that issue intentionally left the package version unchanged when using Python 3.6 and 3.7 b/c that PR was focused on Azure Linux 3 (which now uses v7.1.0). we should circle back and move towe shouldn't be using such an olddocker
v6.1.3 for down-level Python versions.docker
packageRelease Note Category
Release Note Description
updated some Python packages to use newer versions and to consistently apply [chosen approach]
for example, today we'll use
docker
package tov5.0.3
with Python 3.6 or 3.7 andv7.1.0
with newer Python versions. this update will also allow both versions to update as newv5.x
orv7.x
versions are released. were previously using the very oldv3.7.2
package everywhereThe text was updated successfully, but these errors were encountered: