Skip to content

Commit

Permalink
Update pipenv from 2023.2.4 to 2023.2.18 (#1412)
Browse files Browse the repository at this point in the history
  • Loading branch information
edmorley authored Feb 20, 2023
1 parent 59e24ef commit d7a0784
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
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

0 comments on commit d7a0784

Please sign in to comment.