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

Update pipenv from 2023.2.4 to 2023.2.18 #1412

Merged
merged 1 commit into from
Feb 20, 2023
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

- Update pipenv from 2023.2.4 to 2023.2.18 for Python 3.7+ ([#1412](https://github.com/heroku/heroku-buildpack-python/pull/1412)).

## v226 (2023-02-14)

Expand Down
2 changes: 1 addition & 1 deletion bin/steps/pipenv
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
mcount "buildvar.PIP_EXTRA_INDEX_URL"
fi

PIPENV_VERSION='2023.2.4'
PIPENV_VERSION='2023.2.18'

case "${PYTHON_VERSION}" in
python-3.6.*)
Expand Down
20 changes: 11 additions & 9 deletions spec/hatchet/pipenv_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

require_relative '../spec_helper'

PIPENV_VERSION = '2023.2.18'

RSpec.shared_examples 'builds using Pipenv with the requested Python version' do |python_version|
it "builds with Python #{python_version}" do
app.deploy do |app|
Expand All @@ -10,7 +12,7 @@
remote: -----> Using Python version specified in Pipfile.lock
remote: -----> Installing python-#{python_version}
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
remote: -----> Installing dependencies with Pipenv 2023.2.4
remote: -----> Installing dependencies with Pipenv #{PIPENV_VERSION}
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
remote: -----> Installing SQLite3
REGEX
Expand Down Expand Up @@ -44,7 +46,7 @@
remote: To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes
remote: -----> Installing python-#{DEFAULT_PYTHON_VERSION}
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
remote: -----> Installing dependencies with Pipenv 2023.2.4
remote: -----> Installing dependencies with Pipenv #{PIPENV_VERSION}
remote: Installing dependencies from Pipfile...
remote: -----> Installing SQLite3
OUTPUT
Expand All @@ -63,7 +65,7 @@
remote: To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes
remote: -----> Installing python-#{DEFAULT_PYTHON_VERSION}
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
remote: -----> Installing dependencies with Pipenv 2023.2.4
remote: -----> Installing dependencies with Pipenv #{PIPENV_VERSION}
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
remote: -----> Installing SQLite3
REGEX
Expand Down Expand Up @@ -197,7 +199,7 @@
remote: !
remote: -----> Installing python-#{LATEST_PYTHON_3_7}
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
remote: -----> Installing dependencies with Pipenv 2023.2.4
remote: -----> Installing dependencies with Pipenv #{PIPENV_VERSION}
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
remote: -----> Installing SQLite3
REGEX
Expand Down Expand Up @@ -251,7 +253,7 @@
remote: -----> Using Python version specified in Pipfile.lock
remote: -----> Installing python-#{LATEST_PYTHON_3_11}
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
remote: -----> Installing dependencies with Pipenv 2023.2.4
remote: -----> Installing dependencies with Pipenv #{PIPENV_VERSION}
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
remote: -----> Installing SQLite3
REGEX
Expand All @@ -274,7 +276,7 @@
remote: !
remote: -----> Installing python-3.10.7
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
remote: -----> Installing dependencies with Pipenv 2023.2.4
remote: -----> Installing dependencies with Pipenv #{PIPENV_VERSION}
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
remote: -----> Installing SQLite3
REGEX
Expand Down Expand Up @@ -323,7 +325,7 @@
remote: -----> Using Python version specified in runtime.txt
remote: -----> Installing python-#{LATEST_PYTHON_3_10}
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
remote: -----> Installing dependencies with Pipenv 2023.2.4
remote: -----> Installing dependencies with Pipenv #{PIPENV_VERSION}
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
remote: -----> Installing SQLite3
REGEX
Expand All @@ -341,7 +343,7 @@
remote: -----> Using Python version specified in Pipfile.lock
remote: -----> Installing python-#{LATEST_PYTHON_3_10}
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
remote: -----> Installing dependencies with Pipenv 2023.2.4
remote: -----> Installing dependencies with Pipenv #{PIPENV_VERSION}
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
remote: -----> Installing SQLite3
REGEX
Expand All @@ -360,7 +362,7 @@
remote: To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes
remote: -----> Installing python-#{DEFAULT_PYTHON_VERSION}
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
remote: -----> Installing dependencies with Pipenv 2023.2.4
remote: -----> Installing dependencies with Pipenv #{PIPENV_VERSION}
remote: Your Pipfile.lock \\(.+\\) is out of date. Expected: \\(.+\\).
remote: .+
remote: ERROR:: Aborting deploy
Expand Down