Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## [Unreleased]

- Updated Poetry from 2.2.1 to 2.3.1. ([#2019](https://github.com/heroku/heroku-buildpack-python/pull/2019))
- The web server concurrency calculation profile script now sets the env var `WEB_CONCURRENCY_SET_BY="heroku/python"` if `WEB_CONCURRENCY` was set automatically by the buildpack. ([#2015](https://github.com/heroku/heroku-buildpack-python/pull/2015))

## [v331] - 2026-01-11
Expand Down
2 changes: 1 addition & 1 deletion requirements/poetry.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
poetry==2.2.1
poetry==2.3.1
4 changes: 2 additions & 2 deletions spec/hatchet/poetry_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@
end
end

# TODO: Rename this test description back this when the Poetry version next changes.
context 'when the Python version has changed since the last build' do
context 'when the Poetry and Python versions have changed since the last build' do
let(:buildpacks) { ['https://github.com/heroku/heroku-buildpack-python#v313'] }
let(:app) { Hatchet::Runner.new('spec/fixtures/poetry_basic', buildpacks:) }

Expand All @@ -147,6 +146,7 @@
remote: -----> Using Python 3.14 specified in .python-version
remote: -----> Discarding cache since:
remote: - The Python version has changed from 3.14.0 to #{LATEST_PYTHON_3_14}
remote: - The Poetry version has changed from 2.2.1 to #{POETRY_VERSION}
remote: -----> Installing Python #{LATEST_PYTHON_3_14}
remote: -----> Installing Poetry #{POETRY_VERSION}
remote: -----> Installing dependencies using 'poetry sync --only main'
Expand Down