Skip to content

Commit

Permalink
üython-3.9.12: Update pip version check patch
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed May 17, 2022
1 parent 837f9cb commit cea0349
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions python-3.9.12-0.build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -627,16 +627,18 @@ exit
# the code to cope with '--disable-pip-version-check' is spread over the module, so
# just quieten the enervating/misleading update reminder for at least 3 minors ...

#Epatch:pip --- a/pip/_internal/self_outdated_check.py 2021-07-27 17:47:47.374158577 +0200
#Epatch:pip +++ b/pip/_internal/self_outdated_check.py 2021-07-28 13:07:59.790436157 +0200
#Epatch:pip @@ -163,4 +163,6 @@
#Epatch:pip pip_version < remote_version and
#Epatch:pip pip_version.base_version != remote_version.base_version and
#Epatch:pip + ( pip_version.release[0] < remote_version.release[0] or
#Epatch:pip + pip_version.release[1] < (remote_version.release[1] - 3) ) and
#Epatch:pip was_installed_by_pip('pip')
#Epatch:pip )

#Epatch:pip *** a/pip/_internal/self_outdated_check.py Mon May 16 13:16:30 2022
#Epatch:pip --- b/pip/_internal/self_outdated_check.py Mon May 16 15:57:31 2022
#Epatch:pip ***************
#Epatch:pip *** 206,211 ****
#Epatch:pip --- 206,212 ----
#Epatch:pip local_version_is_older = (
#Epatch:pip local_version < remote_version
#Epatch:pip and local_version.base_version != remote_version.base_version
#Epatch:pip + and ( local_version.release[0] < remote_version.release[0] or local_version.release[1] < remote_version.release[1] - 3 )
#Epatch:pip )
#Epatch:pip if local_version_is_older:
#Epatch:pip return UpgradePrompt(old=str(local_version), new=remote_version_str)

# BTW: numpy is installed ...

Expand Down

0 comments on commit cea0349

Please sign in to comment.