From e4514e92d87f62a871f61c40ffb98b9f9138e1a1 Mon Sep 17 00:00:00 2001 From: Arslan Ashraf <34372316+arslanashraf7@users.noreply.github.com> Date: Mon, 5 Jan 2026 17:49:48 +0500 Subject: [PATCH 1/2] fix: upgrade poetry to fix build issues (#3737) --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- pyproject.toml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b89c3c11ca..c5d40504ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: - name: Install poetry uses: snok/install-poetry@v1 with: - version: 1.8.2 + version: 2.2.1 virtualenvs-create: true virtualenvs-in-project: true virtualenvs-path: .venv diff --git a/Dockerfile b/Dockerfile index 2b4aad3865..fd4287839c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN mkdir /var/media && chown -R mitodl:mitodl /var/media # Poetry env configuration ENV \ - POETRY_VERSION=1.5.1 \ + POETRY_VERSION=2.2.1 \ POETRY_VIRTUALENVS_CREATE=false \ POETRY_CACHE_DIR='/tmp/cache/poetry' \ POETRY_HOME='/home/mitodl/.local' \ diff --git a/pyproject.toml b/pyproject.toml index 5e94627b45..5aa1e49bd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,7 @@ license = "BSD-3" readme = "README.md" packages = [] package-mode = false +requires-poetry = ">2.2,<3" [tool.poetry.dependencies] python = "^3.13" From 33596ccd369565e52949c166aa53390d3bcdfd86 Mon Sep 17 00:00:00 2001 From: Doof Date: Tue, 6 Jan 2026 13:39:37 +0000 Subject: [PATCH 2/2] Release 0.189.2 --- RELEASE.rst | 5 +++++ mitxpro/settings.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/RELEASE.rst b/RELEASE.rst index ed6178269d..fb5464bafc 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,11 @@ Release Notes ============= +Version 0.189.2 +--------------- + +- fix: upgrade poetry to fix build issues (#3737) + Version 0.189.1 (Released January 06, 2026) --------------- diff --git a/mitxpro/settings.py b/mitxpro/settings.py index 2a052d29ad..63cfc924b7 100644 --- a/mitxpro/settings.py +++ b/mitxpro/settings.py @@ -26,7 +26,7 @@ from mitxpro.celery_utils import OffsettingSchedule from mitxpro.sentry import init_sentry -VERSION = "0.189.1" +VERSION = "0.189.2" env.reset()