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
82015a46
Commit
82015a46
authored
Apr 12, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another attempt at fixing the pycparser problem.
parent
6d475370
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
appveyor.yml
appveyor.yml
+7
-4
No files found.
appveyor.yml
View file @
82015a46
...
...
@@ -138,9 +138,6 @@ cache:
-
'
%LOCALAPPDATA%\pip\Cache'
build_script
:
# Sometimes we have a problem installing this?
# See https://ci.appveyor.com/project/denik/gevent/builds/23810605/job/83aw4u67artt002b#L602
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
install
-U
--upgrade-strategy=eager
pycparser"
# Build the compiled extension
-
if not "%GWHEEL_ONLY%"=="true" %PYEXE% -m pip install -U --upgrade-strategy=eager -r dev-requirements.txt
...
...
@@ -151,7 +148,13 @@ test_script:
-
if not "%GWHEEL_ONLY%"=="true" %PYEXE% -mgevent.tests --config known_failures.py --quiet
after_test
:
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
wheel
.
-w
dist"
# pycparser can't be built correctly in an isolated environment.
# See
# https://ci.appveyor.com/project/denik/gevent/builds/23810605/job/83aw4u67artt002b#L602
# So we violate DRY and repeate some requirements in order to use
# --no-build-isolation
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
install
-U
--upgrade-strategy=eager
pycparser
wheel
cython
setuptools"
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
wheel
--no-build-isolation
.
-w
dist"
-
ps
:
"
ls
dist"
artifacts
:
...
...
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