Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented igraph #1196

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion server/pypi/build-wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,8 @@ def env_vars(self):
})

for var in self.meta["build"]["script_env"]:
key, value = var.split("=")
key, value = var.split("=",1)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was failing because of finding
IGRAPH_CMAKE_EXTRA_ARGS=-DF2C_EXTERNAL_ARITH_HEADER=../../../../../../../android64_x86_64_arm64.h -DIEEE754_DOUBLE_ENDIANNESS_MATCHES=ON

Multiple "=", now will only take the first segment as key and the rest as value as is

print("DEBUG ENVS",key,value)
env[key] = value

# We do this unconditionally, because we don't know whether the package requires
Expand Down
9 changes: 9 additions & 0 deletions server/pypi/packages/igraph/android64_x86_64_arm64.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#define IEEE_8087
#define Arith_Kind_ASL 1
#define Long int
#define Intcast (int)(long)
#define Double_Align
#define X64_bit_pointers
#define NANCHECK
#define QNaN0 0x0
#define QNaN1 0x7ff80000
12 changes: 12 additions & 0 deletions server/pypi/packages/igraph/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package:
name: igraph
version: "0.11.5"


build:
number: 0
script_env:
# paralelize compilation

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# paralelize compilation
# parallelize compilation

- MAKEFLAGS=-j${CPU_COUNT}
- IGRAPH_CMAKE_EXTRA_ARGS=-DF2C_EXTERNAL_ARITH_HEADER=../../../../../../../android64_x86_64_arm64.h -DIEEE754_DOUBLE_ENDIANNESS_MATCHES=ON

51 changes: 51 additions & 0 deletions server/pypi/packages/igraph/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import unittest


class TestIgraph(unittest.TestCase):

def testGraphCreation(self):
from igraph import Graph
g = Graph()
self.assertTrue(isinstance(g, Graph))
self.assertTrue(g.vcount() == 0 and g.ecount() == 0 and not g.is_directed())

g = Graph(3, [(0, 1), (1, 2), (2, 0)])
self.assertTrue(
g.vcount() == 3
and g.ecount() == 3
and not g.is_directed()
and g.is_simple()
)

g = Graph(2, [(0, 1), (1, 2), (2, 3)], True)
self.assertTrue(
g.vcount() == 4 and g.ecount() == 3 and g.is_directed() and g.is_simple()
)

g = Graph([(0, 1), (1, 2), (2, 1)])
self.assertTrue(
g.vcount() == 3
and g.ecount() == 3
and not g.is_directed()
and not g.is_simple()
)

g = Graph(((0, 1), (0, 0), (1, 2)))
self.assertTrue(
g.vcount() == 3
and g.ecount() == 3
and not g.is_directed()
and not g.is_simple()
)

g = Graph(8, None)
self.assertEqual(8, g.vcount())
self.assertEqual(0, g.ecount())
self.assertFalse(g.is_directed())

g = Graph(edges=None)
self.assertEqual(0, g.vcount())
self.assertEqual(0, g.ecount())
self.assertFalse(g.is_directed())

self.assertRaises(TypeError, Graph, edgelist=[(1, 2)])