Skip to content

Commit

Permalink
Merge pull request #3277 from Azure/hotfix-2.12.0.3
Browse files Browse the repository at this point in the history
Hotfix 2.12.0.4 to master
  • Loading branch information
maddieford authored Dec 17, 2024
2 parents 7065e81 + 8b1f088 commit 5fcca0f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion azurelinuxagent/common/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def has_logrotate():
#
# When doing a release, be sure to use the actual agent version. Current agent version: 2.4.0.0
#
AGENT_VERSION = '2.12.0.2'
AGENT_VERSION = '2.12.0.4'
AGENT_LONG_VERSION = "{0}-{1}".format(AGENT_NAME, AGENT_VERSION)
AGENT_DESCRIPTION = """
The Azure Linux Agent supports the provisioning and running of Linux
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,10 +320,11 @@ def run(self):
# will be removed from Python 3.
# * In version 3.13 of Python, the crypt module was removed and legacycrypt is
# required instead.
requires = [
"distro;python_version>='3.8'",
"legacycrypt;python_version>='3.13'",
]
requires = []
if sys.version_info[0] >= 3 and sys.version_info[1] >= 8:
requires.append('distro')
if sys.version_info[0] >= 3 and sys.version_info[1] >= 13:
requires.append('legacycrypt')

modules = [] # pylint: disable=invalid-name

Expand Down
2 changes: 1 addition & 1 deletion tests_e2e/orchestrator/lib/agent_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ def read_file(path: str) -> str:
template: Dict[str, Any] = json.loads(read_file(str(self._test_source_directory/"orchestrator"/"templates/vmss.json")))

# Scale sets for some images need to be deployed with 'plan' property
plan_required_images = ["almalinux", "kinvolk", "erockyenterprisesoftwarefoundationinc1653071250513"]
plan_required_images = ["almalinux", "kinvolk", "resf"]
if publisher in plan_required_images:
resources: List[Dict[str, Any]] = template.get('resources')
for resource in resources:
Expand Down
2 changes: 1 addition & 1 deletion tests_e2e/test_suites/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ images:
AzureChinaCloud: []
AzureUSGovernment: []
rocky_9:
urn: "erockyenterprisesoftwarefoundationinc1653071250513 rockylinux-9 rockylinux-9 latest"
urn: "resf rockylinux-x86_64 9-base latest"
locations:
AzureChinaCloud: []
AzureUSGovernment: []
Expand Down

0 comments on commit 5fcca0f

Please sign in to comment.