Skip to content

Commit 863cb02

Browse files
committed
Fix Read the Docs on Python 3
1 parent 824adfd commit 863cb02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
# Print PARI/GP defaults and environment variables for debugging
1515
from subprocess import Popen, PIPE
16-
Popen(["gp", "-f", "-q"], stdin=PIPE).communicate("default()")
16+
Popen(["gp", "-f", "-q"], stdin=PIPE).communicate(b"default()")
1717
for item in os.environ.items():
1818
print("%s=%r" % item)
1919

0 commit comments

Comments
 (0)