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
24e8c7fd
Commit
24e8c7fd
authored
Dec 08, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Windows setuptools on appveyor was incredibly picky about paths.
parent
61acfd7a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
appveyor.yml
appveyor.yml
+1
-1
src/gevent/libuv/_corecffi_build.py
src/gevent/libuv/_corecffi_build.py
+5
-2
No files found.
appveyor.yml
View file @
24e8c7fd
...
...
@@ -120,7 +120,7 @@ install:
# pip will build them from source using the MSVC compiler matching the
# target Python version and architecture
# Note that psutil won't build under PyPy on Windows.
-
"
%CMD_IN_ENV%
pip
install
-U
wheel
cython
greenlet
cffi"
-
"
%CMD_IN_ENV%
pip
install
-U
setuptools
wheel
cython
greenlet
cffi"
-
ps
:
if ("${env:PYTHON_ID}" -ne "pypy") {
...
...
src/gevent/libuv/_corecffi_build.py
View file @
24e8c7fd
...
...
@@ -61,8 +61,11 @@ LIBUV_INCLUDE_DIRS = [
# Initially based on https://github.com/saghul/pyuv/blob/v1.x/setup_libuv.py
def
_libuv_source
(
rel_path
):
path
=
os
.
path
.
join
(
libuv_dir
,
'src'
,
rel_path
)
assert
os
.
path
.
isfile
(
path
),
path
# Certain versions of setuptools, notably on windows, are *very*
# picky about what we feed to sources= "setup() arguments must
# *always* be /-separated paths relative to the setup.py
# directory, *never* absolute paths." POSIX doesn't have that issue.
path
=
os
.
path
.
join
(
'deps'
,
'libuv'
,
'src'
,
rel_path
)
return
path
LIBUV_SOURCES
=
[
...
...
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