Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
cython
Commits
14ec0d11
Commit
14ec0d11
authored
Dec 21, 2021
by
Matti Picus
Committed by
GitHub
Dec 21, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pin setuptools<60 to resolve CI build failures due to incorrect C compiler flags (GH-4510)
parent
4c658333
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
.github/workflows/wheel-manylinux.yml
.github/workflows/wheel-manylinux.yml
+1
-1
Tools/ci-run.sh
Tools/ci-run.sh
+1
-1
No files found.
.github/workflows/wheel-manylinux.yml
View file @
14ec0d11
...
...
@@ -16,7 +16,7 @@ jobs:
python-version
:
3.8
-
name
:
Install build dependencies
run
:
pip install -U
setuptools
pip wheel
run
:
pip install -U
"setuptools<60"
pip wheel
-
name
:
Make sdist and Python wheel
run
:
make sdist pywheel
...
...
Tools/ci-run.sh
View file @
14ec0d11
...
...
@@ -69,7 +69,7 @@ elif [[ $PYTHON_VERSION == "3."[45]* ]]; then
python
-m
pip
install
wheel
||
exit
1
python
-m
pip
install
-r
test-requirements-34.txt
||
exit
1
else
python
-m
pip
install
-U
pip
setuptools
wheel
||
exit
1
python
-m
pip
install
-U
pip
"setuptools<60"
wheel
||
exit
1
if
[[
$PYTHON_VERSION
!=
*
"-dev"
||
$COVERAGE
==
"1"
]]
;
then
python
-m
pip
install
-r
test-requirements.txt
||
exit
1
...
...
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