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
ef28aed2
Commit
ef28aed2
authored
Apr 25, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak appveyor and instructions for #1412. Fixes #1412
parent
d33f320e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
appveyor.yml
appveyor.yml
+2
-1
docs/install.rst
docs/install.rst
+6
-0
No files found.
appveyor.yml
View file @
ef28aed2
...
...
@@ -128,7 +128,7 @@ install:
# 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"
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
install
--disable-pip-version-check
--user
--upgrade
pip
<19.1
"
-
ps
:
"
if(Test-Path(
\"
${env:PYTHON}
\\
bin
\"
))
{ls
${env:PYTHON}
\\
bin;}"
-
ps
:
"
if(Test-Path(
\"
${env:PYTHON}
\\
Scripts
\"
))
{ls
${env:PYTHON}
\\
Scripts;}"
...
...
@@ -139,6 +139,7 @@ cache:
build_script
:
# Build the compiled extension
# pip 19.1 (exactly) won't work; but 19.1.1 should with --no-use-pep517
-
if not "%GWHEEL_ONLY%"=="true" %PYEXE% -m pip install -U --upgrade-strategy=eager -r dev-requirements.txt
test_script
:
...
...
docs/install.rst
View file @
ef28aed2
...
...
@@ -163,6 +163,12 @@ To hack on gevent (using a virtualenv)::
prerequisites (CFFI, Cython), but having a working C compiler that
can create Python extensions is up to you.
.. warning::
This pip command does not work with pip 19.1. Either use pip 19.0
or below, or use pip 19.1.1 with ``--no-use-pep517``. See `issue
1412 <https://github.com/gevent/gevent/issues/1412>`_.
Running Tests
-------------
...
...
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