From 56d86caf5666c07a9d89d3950a56d980f02024d9 Mon Sep 17 00:00:00 2001 From: John Lee Date: Tue, 17 Sep 2024 11:00:30 -0400 Subject: [PATCH] CI: update CircleCI Ubuntu image to 24.04 (#1633) * Update CircleCI ubuntu image to 24.04 * Also remove deprecated CODEOWNERS file. * Force lower cython for PyYAML version, which is necessary for newer Python. Otherwise we should vet newer PyYAML. * Revert "Force lower cython for PyYAML version, which is necessary for newer Python. Otherwise we should vet newer PyYAML." This reverts commit 018c354f3fd55e92ac5e0ddb71bcb9943a2ec38b. * Instead of forcing cython we should just bump PyYAML * Also bump PyYAML in e2e_tests. --- .circleci/config.yml | 2 +- CODEOWNERS | 2 -- e2e_tests/pyproject.toml | 2 +- misc/requirements.txt | 4 ++-- 4 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 CODEOWNERS diff --git a/.circleci/config.yml b/.circleci/config.yml index a1e3e1fce..ea2584127 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ orbs: parameters: ubuntu_image: type: string - default: "ubuntu-2204:2022.04.2" + default: "ubuntu-2404:2024.05.1" workflows: version: 2 diff --git a/CODEOWNERS b/CODEOWNERS deleted file mode 100644 index 5ffa97e9d..000000000 --- a/CODEOWNERS +++ /dev/null @@ -1,2 +0,0 @@ -.github/ @algorand/lamprey -.circleci/ @algorand/lamprey diff --git a/e2e_tests/pyproject.toml b/e2e_tests/pyproject.toml index 26a0da0fd..d440b5d17 100644 --- a/e2e_tests/pyproject.toml +++ b/e2e_tests/pyproject.toml @@ -12,7 +12,7 @@ dependencies = [ "msgpack==1.0.4", "py-algorand-sdk==1.17.0", "pytest==6.2.5", - "PyYAML==6.0", + "PyYAML==6.0.2", "setuptools ==70.0.0", ] diff --git a/misc/requirements.txt b/misc/requirements.txt index 611315496..1551f18cb 100644 --- a/misc/requirements.txt +++ b/misc/requirements.txt @@ -4,5 +4,5 @@ msgpack >=1,<2 py-algorand-sdk >=1.3.0,<2 pytest==6.2.5 GitPython==3.1.41 -PyYAML==6.0 -requests==2.32.0 \ No newline at end of file +PyYAML==6.0.2 +requests==2.32.0