mirror of
https://src.fedoraproject.org/rpms/sagemath.git
synced 2025-04-21 11:19:02 -04:00
Also: - Remove configparser dependencies (bz 1706597). - Fix broken sed conversion (bz 1706234). - Fix python2 versus python3 snafu (bz 1706337, 1707166). - Build and install sagetex (bz 1706322).
12 lines
697 B
Diff
12 lines
697 B
Diff
diff -up src/sage/graphs/graph_generators.py.orig src/sage/graphs/graph_generators.py
|
|
--- src/sage/graphs/graph_generators.py.orig 2019-06-26 14:41:04.000000000 -0600
|
|
+++ src/sage/graphs/graph_generators.py 2019-06-27 11:37:46.100759559 -0600
|
|
@@ -907,7 +907,7 @@ class GraphGenerators():
|
|
else:
|
|
enc_kwargs = {'encoding': 'latin-1'}
|
|
|
|
- sp = subprocess.Popen("geng {0}".format(options), shell=True,
|
|
+ sp = subprocess.Popen("nauty-geng {0}".format(options), shell=True,
|
|
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
|
|
stderr=subprocess.PIPE, close_fds=True,
|
|
**enc_kwargs)
|