Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
islpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kaushik Kulkarni
islpy
Commits
ffdf0f43
Commit
ffdf0f43
authored
9 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Aksetup: fix superclass ref
parent
8712f7ca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aksetup_helper.py
+2
-2
2 additions, 2 deletions
aksetup_helper.py
with
2 additions
and
2 deletions
aksetup_helper.py
+
2
−
2
View file @
ffdf0f43
...
...
@@ -68,7 +68,7 @@ class PyUblasExtension(NumpyExtension):
return
resource_filename
(
Requirement
.
parse
(
name
),
"
%s/include
"
%
name
)
def
get_additional_include_dirs
(
self
):
return
(
super
(
PyUblas
Extension
,
self
)
.
get_additional_include_dirs
()
return
(
Numpy
Extension
.
get_additional_include_dirs
(
self
)
+
[
self
.
get_module_include_path
(
"
pyublas
"
)])
...
...
@@ -492,7 +492,7 @@ class BoostLibraries(Libraries):
Libraries
.
__init__
(
self
,
"
BOOST_%s
"
%
lib_base_name
.
upper
(),
[
default_lib_name
],
help
=
"
Library names for Boost C++ %s library (without lib or .so)
"
%
humanize
(
lib_base_name
))
%
humanize
(
lib_base_name
))
def
set_up_shipped_boost_if_requested
(
project_name
,
conf
,
source_path
=
None
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment