-
-
Notifications
You must be signed in to change notification settings - Fork 673
Add support for Python 3.13 in conda #39189
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
base: develop
Are you sure you want to change the base?
Conversation
Documentation preview for this PR (built with commit 59103d5; changes) is ready! 🎉 |
3fd6590
to
0bb2a1b
Compare
``` In file included from build/cythonized/sage/graphs/base/boost_graph.cpp:1278: build/cythonized/sage/graphs/base/boost_interface.cpp:119:34: error: non-constant-expression cannot be narrowed from type 'value_type' (aka 'unsigned long') to 'int' in initializer list [-Wc++11-narrowing-const-reference] 119 | to_return.push_back({index[boost::source(*ei, graph)], | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ build/cythonized/sage/graphs/base/boost_graph.cpp:17503:29: note: in instantiation of member function 'BoostGraph<boost::vecS, boost::vecS, boost::directedS, boost::vecS, boost::property<boost::edge_weight_t, double>>::edge_list' requested here 17503 | __pyx_v_edges = __pyx_v_g.edge_list(); ^ ``` https://clang.llvm.org/docs/DiagnosticsReference.html#wc-11-narrowing-const-reference To silence the error assign to a v_index outside of the initializer list.
Comes from the update to gcc14. Fixed in linbox-team/givaro#226, which is in givaro 4.2.1 - already on Conda but until conda-forge/fflas-ffpack-feedstock#21 is fixed it pulls in older givaro. |
Tests are mostly green (modulo the what appears to be the common background noise of randomly failing tests), so this is now finally ready for review. |
@tobiasdiez can you please update the checklist for this PR? Thanks! |
You mean the one in the PR description? It's mostly there as a reminder for the person opening the PR - but well, I clicked a few checkboxes ;-) |
I thought that was used by folks to review/merge PRs :D |
Fixes #39163
📝 Checklist
⌛ Dependencies