Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xavier Thompson
slapos
Commits
6b4346c2
Commit
6b4346c2
authored
Oct 18, 2024
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stack/slapos-py2.cfg: Pin gcc-8.5 only when scipy
parent
8e52298f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
stack/slapos-py2.cfg
stack/slapos-py2.cfg
+12
-1
No files found.
stack/slapos-py2.cfg
View file @
6b4346c2
...
@@ -6,7 +6,18 @@ part = python2.7
...
@@ -6,7 +6,18 @@ part = python2.7
[gcc]
[gcc]
# To compile Python2-compatible scipy==1.0.1
# To compile Python2-compatible scipy==1.0.1
part = gcc-8.5
depends += ${gcc-if-scipy:recipe}
[gcc-if-scipy]
recipe = slapos.recipe.build
init =
# Note: doing "'scipy' in self.buildout" pulls [scipy]
# because Buildout inherits from DictMixin / MutableMapping
# making 'in' fall back to self.buildout.__getitem__('scipy').
# XXX: buildout should implement __contains__ directly.
if 'scipy' in self.buildout._raw:
# ok because [gcc]'s init is still unevaluated at this point
self.buildout['gcc']['part'] = 'gcc-8.5'
[openssl]
[openssl]
<= openssl-1.1
<= openssl-1.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