Package Details: python-graph-tool 2.79-1

Git Clone URL: https://aur.archlinux.org/python-graph-tool.git (read-only, click to copy)
Package Base: python-graph-tool
Description: A Python module for manipulation and statistical analysis of graphs
Upstream URL: https://graph-tool.skewed.de
Keywords: graphs networks science
Licenses: LGPL3
Conflicts: python3-graph-tool
Provides: python3-graph-tool
Replaces: python3-graph-tool
Submitter: muellner
Maintainer: count0
Last Packager: count0
Votes: 29
Popularity: 0.000000
First Submitted: 2013-11-24 19:22 (UTC)
Last Updated: 2024-10-27 09:12 (UTC)

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 11 12 13 .. 15 Next › Last »

qwattash commented on 2016-11-12 00:20 (UTC)

I'm getting this error while compiling: ./../../boost-workaround/boost/graph/reverse_graph_alt.hpp:292:18: error: no matching function for call to ‘degree(const vertex_descriptor&, const boost::filtered_graph<boost::adj_list<long unsigned int>, graph_tool::detail::MaskFilter<boost::unchecked_vector_property_map<unsigned char, boost::adj_edge_index_property_map<long unsigned int> > >, graph_tool::detail::MaskFilter<boost::unchecked_vector_property_map<unsigned char, boost::typed_identity_property_map<long unsigned int> > > >&)’ Does anyone have a similar issue? Using the latest boost 1.62-3

fidbc commented on 2016-11-02 11:35 (UTC)

Hi count0, Build seems to fail with new boost version. Please see [1] for output. Any help trying go work around this will be appreciated. Thanks! [1]: http://pastebin.com/Cy5Ek5EP

helvethor commented on 2016-06-26 19:06 (UTC)

I somehow had to install cairomm manually, but it worked after that. Great work!

ptrxyz commented on 2016-04-20 13:05 (UTC)

You are right, I just went out for lunch and it has finished meanwhile. Sry for the false report. Everything seems fine.

count0 commented on 2016-04-20 12:21 (UTC)

@ptrxyz These warnings are not errors, and they are benign. They come from boost, not graph-tool, and hence cannot be fixed here. Make does not hang, it just takes over an hour to compile. See more information here: https://graph-tool.skewed.de/download If you have a lot of memory, you can speedup the compilation by passing "-jN" to make, with "N" being the number or parallel jobs.

ptrxyz commented on 2016-04-20 11:50 (UTC) (edited on 2016-04-20 11:51 (UTC) by ptrxyz)

This seems to not build correctly. There is no error, but make indefinitely hangs and spits out messages like this over and over again: ... In file included from /usr/include/boost/type_traits/ice.hpp:15:0, from /usr/include/boost/python/detail/def_helper.hpp:9, from /usr/include/boost/python/class.hpp:29, from /usr/include/boost/python.hpp:18, from graph_centrality_bind.cc:18: /usr/include/boost/type_traits/detail/ice_or.hpp:17:71: note: #pragma message: NOTE: Use of this header (ice_or.hpp) is deprecated # pragma message("NOTE: Use of this header (ice_or.hpp) is deprecated") ...

lahwaacz commented on 2016-04-07 18:58 (UTC)

@count0 Indeed, thanks for the notice and the fix.

count0 commented on 2016-04-06 06:37 (UTC)

@lahwaacz The problem you found should be fixed in the current release.

count0 commented on 2016-03-02 21:52 (UTC)

@lahwaacz Well, this module should not be executed, only imported. Since the module itself does not exist until it is finished being imported, any internal reference to "io" refers to the system module. I don't know why the Makefile that was generated in your system is attempting to do that; it certainly does not happen in mine. However, I do acknowledge that naming the submodule io.py was not the best choice. I will change this in the next release.

lahwaacz commented on 2016-03-02 20:04 (UTC) (edited on 2016-03-02 20:07 (UTC) by lahwaacz)

@count0 Actually, the problem seems to be the src/graph_tool/io.py file. Python needs to import the io module implicitly, which will not work when the interpreter is run from src/graph_tool/ since the io.py file overrides it. The py-compile script is run from src/graph_tool/ (according to the Makefile that was generated on my system), hence the error. I think you should rename io.py to something better... See http://stackoverflow.com/q/26569828