Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/module_list.py: Move options for Extensions in sage.graphs to dis…
Browse files Browse the repository at this point in the history
…tutils directives
  • Loading branch information
mkoeppe committed Jun 3, 2020
1 parent 860e4dc commit 55bd7ba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/module_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,7 @@ def uname_specific(name, value, alternative):
sources = ['sage/graphs/base/static_dense_graph.pyx']),

Extension('sage.graphs.base.static_sparse_graph',
sources = ['sage/graphs/base/static_sparse_graph.pyx'],
language = 'c++'),
sources = ['sage/graphs/base/static_sparse_graph.pyx']),

Extension('sage.graphs.base.static_sparse_backend',
sources = ['sage/graphs/base/static_sparse_backend.pyx']),
Expand Down Expand Up @@ -441,8 +440,7 @@ def uname_specific(name, value, alternative):
sources = ['sage/graphs/spanning_tree.pyx']),

Extension('sage.graphs.path_enumeration',
sources = ['sage/graphs/path_enumeration.pyx'],
language = 'c++'),
sources = ['sage/graphs/path_enumeration.pyx']),

Extension('sage.graphs.connectivity',
sources = ['sage/graphs/connectivity.pyx']),
Expand All @@ -457,8 +455,7 @@ def uname_specific(name, value, alternative):
sources = ['sage/graphs/hyperbolicity.pyx']),

Extension('sage.graphs.base.c_graph',
sources = ['sage/graphs/base/c_graph.pyx'],
language = 'c++'),
sources = ['sage/graphs/base/c_graph.pyx']),

Extension('sage.graphs.base.sparse_graph',
sources = ['sage/graphs/base/sparse_graph.pyx']),
Expand Down
1 change: 1 addition & 0 deletions src/sage/graphs/base/c_graph.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# distutils: language = c++
r"""
Fast compiled graphs
Expand Down
1 change: 1 addition & 0 deletions src/sage/graphs/base/static_sparse_graph.pyx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# cython: binding=True
# distutils: language = c++
r"""
Static Sparse Graphs
Expand Down
1 change: 1 addition & 0 deletions src/sage/graphs/path_enumeration.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
# cython: binding=True
# distutils: language = c++
r"""
Path Enumeration
Expand Down

0 comments on commit 55bd7ba

Please sign in to comment.