From 0a996952d493c21f0577fafec76aa63e116e959d Mon Sep 17 00:00:00 2001 From: Nathan Dunfield Date: Thu, 26 Dec 2024 18:23:53 -0600 Subject: [PATCH] Added dependencies: pickleshare and PyX --- setup.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index c325e16b..6b07c361 100644 --- a/setup.py +++ b/setup.py @@ -495,9 +495,18 @@ def add(self, source_file, dependency_mod_time=0.0): ext_modules = [SnapPyC, SnapPyHP, TwisterCore] -install_requires = ['plink>=2.4.2', 'spherogram>=2.2', 'FXrays>=1.3', - 'snappy_manifolds>=1.2.1', 'low_index>=1.2', - 'pypng', 'decorator', 'packaging', 'tkinter-gl>=1.0a3'] +install_requires = ['FXrays>=1.3', + 'plink>=2.4.2', + 'spherogram>=2.2', + 'snappy_manifolds>=1.2.1', + 'low_index>=1.2', + 'tkinter-gl>=1.0a3', + 'decorator', + 'packaging', + 'pypng', # Used to save OpenGL images. + 'PyX', # Used to save PDF images of links. + 'pickleshare', # To avoid https://github.com/ipython/ipython/issues/14416 + ] try: import sage except ImportError: