Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in the BUILD_WITH_GEO_LIBRARIES EOL error message #1307

Merged
merged 1 commit into from
Apr 12, 2022
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

- Fix typo in the `BUILD_WITH_GEO_LIBRARIES` end-of-life error message ([#1307](https://github.com/heroku/heroku-buildpack-python/pull/1307)).

## v209 (2022-03-24)

Expand Down
2 changes: 1 addition & 1 deletion bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ source "$BIN_DIR/warnings"

if [[ -f "${ENV_DIR}/BUILD_WITH_GEO_LIBRARIES" ]]; then
mcount "failure.unsupported.BUILD_WITH_GEO_LIBRARIES"
puts-warn "The Python buildpack's legacy BUILD_WITH_GEO_LIBRARIES functonality is"
puts-warn "The Python buildpack's legacy BUILD_WITH_GEO_LIBRARIES functionality is"
puts-warn "no longer supported:"
puts-warn "https://devcenter.heroku.com/changelog-items/1947"
puts-warn
Expand Down
2 changes: 1 addition & 1 deletion spec/hatchet/pip_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
app.deploy do |app|
expect(clean_output(app.output)).to include(<<~OUTPUT)
remote: -----> Python app detected
remote: ! The Python buildpack's legacy BUILD_WITH_GEO_LIBRARIES functonality is
remote: ! The Python buildpack's legacy BUILD_WITH_GEO_LIBRARIES functionality is
remote: ! no longer supported:
remote: ! https://devcenter.heroku.com/changelog-items/1947
OUTPUT
Expand Down