Skip to content

Commit 1b07902

Browse files
committed
Remove _extensions.py dummy installation
1 parent 0618222 commit 1b07902

File tree

10 files changed

+0
-10
lines changed

10 files changed

+0
-10
lines changed

pydatastructs/graphs/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from . import algorithms
1010
from . import adjacency_list
1111
from . import adjacency_matrix
12-
from . import _extensions
1312

1413
from .algorithms import (
1514
breadth_first_search,

pydatastructs/graphs/meson.build

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ python = import('python').find_installation(pure: false)
33
python.install_sources(
44
[
55
'__init__.py',
6-
'_extensions.py',
76
'adjacency_list.py',
87
'adjacency_matrix.py',
98
'algorithms.py',

pydatastructs/linear_data_structures/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
arrays,
55
linked_lists,
66
algorithms,
7-
_extensions
87
)
98

109
from .arrays import (

pydatastructs/linear_data_structures/meson.build

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ python = import('python').find_installation(pure: false)
33
python.install_sources(
44
[
55
'__init__.py',
6-
'_extensions.py',
76
'algorithms.py',
87
'arrays.py',
98
'linked_lists.py'

pydatastructs/miscellaneous_data_structures/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
queue,
77
disjoint_set,
88
sparse_table,
9-
_extensions,
109
)
1110

1211
from .binomial_trees import (

pydatastructs/miscellaneous_data_structures/meson.build

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ python = import('python').find_installation(pure: false)
33
python.install_sources(
44
[
55
'__init__.py',
6-
'_extensions.py',
76
'algorithms.py',
87
'multiset.py',
98
'sparse_table.py',

pydatastructs/trees/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
m_ary_trees,
66
space_partitioning_trees,
77
heaps,
8-
_extensions
98
)
109

1110
from .binary_trees import (

pydatastructs/trees/meson.build

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ python = import('python').find_installation(pure: false)
33
python.install_sources(
44
[
55
'__init__.py',
6-
'_extensions.py',
76
'binary_trees.py',
87
'heaps.py',
98
'm_ary_trees.py',

pydatastructs/utils/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from . import (
44
misc_util,
55
testing_util,
6-
_extensions
76
)
87

98
from .misc_util import (

pydatastructs/utils/meson.build

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ python = import('python').find_installation(pure: false)
33
python.install_sources(
44
[
55
'__init__.py',
6-
'_extensions.py',
76
'misc_util.py',
87
'raises_util.py',
98
'testing_util.py'

0 commit comments

Comments
 (0)