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
49edcb7f
Commit
49edcb7f
authored
Apr 30, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Nope, we still need to upgrade setuptools at least. Try not eager.
parent
482d449b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
9 deletions
+16
-9
appveyor.yml
appveyor.yml
+1
-1
docs/development.rst
docs/development.rst
+2
-8
docs/installing_from_source.rst
docs/installing_from_source.rst
+13
-0
No files found.
appveyor.yml
View file @
49edcb7f
...
@@ -158,7 +158,7 @@ after_test:
...
@@ -158,7 +158,7 @@ after_test:
# https://ci.appveyor.com/project/denik/gevent/builds/23810605/job/83aw4u67artt002b#L602
# https://ci.appveyor.com/project/denik/gevent/builds/23810605/job/83aw4u67artt002b#L602
# So we violate DRY and repeate some requirements in order to use
# So we violate DRY and repeate some requirements in order to use
# --no-build-isolation
# --no-build-isolation
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
install
pycparser
wheel
cython
setuptools
cffi"
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
install
-U
pycparser
wheel
cython
setuptools
cffi"
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
wheel
--no-build-isolation
.
-w
dist"
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
wheel
--no-build-isolation
.
-w
dist"
-
ps
:
"
ls
dist"
-
ps
:
"
ls
dist"
...
...
docs/development.rst
View file @
49edcb7f
...
@@ -7,18 +7,12 @@
...
@@ -7,18 +7,12 @@
Things to include:
Things to include:
- Writing tests and the gevent test framework:
- Avoiding hard test dependencies.
- Avoiding hard test dependencies.
- Resource usage.
- Resource usage.
- Custom commands in ``setup.py``
- Custom commands in ``setup.py``
To install the latest development version::
pip install git+git://github.com/gevent/gevent.git#egg=gevent
.. note::
You will not be able to run gevent's test suite using that method.
To hack on gevent (using a virtualenv)::
To hack on gevent (using a virtualenv)::
...
...
docs/installing_from_source.rst
View file @
49edcb7f
...
@@ -35,6 +35,19 @@ General Notes
...
@@ -35,6 +35,19 @@ General Notes
build dependencies, including CFFI (needed for libuv support). pip
build dependencies, including CFFI (needed for libuv support). pip
18 or above is required for this support.
18 or above is required for this support.
- You can use pip's `VCS support
<https://pip.pypa.io/en/stable/reference/pip_install/#vcs-support>`_
to install gevent directly from its code repository. This can be
useful to check if a bug you're experiencing has been fixed. For
example, to install the current development version::
pip install git+git://github.com/gevent/gevent.git#egg=gevent
Often one would install this way into a virtual environment.
If you're using pip 18 or above, that should be all you need. If you
have difficulties, see the development instructions for more information.
Common Installation Issues
Common Installation Issues
==========================
==========================
...
...
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