Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
96f94f81
Commit
96f94f81
authored
Apr 16, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Nope, that was too new. Try another way to unbreak installing pip
parent
a0f6e7de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
.travis.yml
.travis.yml
+1
-1
appveyor.yml
appveyor.yml
+4
-4
No files found.
.travis.yml
View file @
96f94f81
...
...
@@ -20,7 +20,7 @@ env:
-
PYTHONDONTWRITEBYTECODE=1
-
PIP_UPGRADE_STRATEGY=eager
# Don't get warnings about Python 2 support being deprecated. We
# know.
# know.
The env var works for pip 20.
-
PIP_NO_PYTHON_VERSION_WARNING=1
-
CC="ccache gcc"
-
CCACHE_NOCPP2=true
...
...
appveyor.yml
View file @
96f94f81
...
...
@@ -141,8 +141,6 @@ install:
(New-Object Net.WebClient).DownloadFile('https://bitbucket.org/pypy/pypy/downloads/pypy2.7-v7.3.0-win32.zip', "${env:PYTMP}\pypy2-v7.3.0-win32.zip");
}
7z x -y "${env:PYTMP}\pypy2-v7.3.0-win32.zip" -oC:\ | Out-Null;
& "${env:PYTHON}\pypy.exe" "-mensurepip";
}
elseif (-not(Test-Path($env:PYTHON))) {
& appveyor\install.ps1;
...
...
@@ -159,8 +157,10 @@ install:
-
"
%PYEXE%
-c
\"
import
struct;
print(struct.calcsize('P')
*
8)
\"
"
# Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date.
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
install
--disable-pip-version-check
--user
--upgrade
pip"
# about it being out of date. Do this here instead of above in
# powershell because the annoying 'DEPRECATION:blahblahblah 2.7 blahblahblah'
# breaks powershell.
-
"
%CMD_IN_ENV%
%PYEXE%
-mensurepip
-U
--user"
-
ps
:
"
if(Test-Path(
\"
${env:PYTHON}
\\
bin
\"
))
{ls
${env:PYTHON}
\\
bin;}"
-
ps
:
"
if(Test-Path(
\"
${env:PYTHON}
\\
Scripts
\"
))
{ls
${env:PYTHON}
\\
Scripts;}"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment