diff options
author | tlatorre <tlatorre@uchicago.edu> | 2020-11-30 17:15:26 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2020-11-30 17:15:26 -0500 |
commit | 3716b099fe18ff458012084d344fce5f439d3532 (patch) | |
tree | b33fb9a03e5ca8e0d2026353f3597b104b9218a6 /src | |
parent | 8a8e51c15ec61e50e1e32a0ca5b71fdf758937a5 (diff) | |
download | sddm-3716b099fe18ff458012084d344fce5f439d3532.tar.gz sddm-3716b099fe18ff458012084d344fce5f439d3532.tar.bz2 sddm-3716b099fe18ff458012084d344fce5f439d3532.zip |
update code to work with python3
This commit updates the python code to work with python 3 and with a
newer version of matplotlib.
- zip_longest -> izip_longest
- fix tick marks for log plots
- scipy.misc -> scipy.special
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 834bdb4..107b44b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,7 +1,7 @@ release_hdr := $(shell sh -c './mkreleasehdr.sh') CFLAGS=-fdiagnostics-color -O2 -Wall -g -DSWAP_BYTES -LDLIBS=-fdiagnostics-color -lm -lgsl -lgslcblas -lnlopt_cxx -lstdc++ -lz -lhdf5 +LDLIBS=-fdiagnostics-color -lm -lgsl -lgslcblas -lnlopt -lz -lhdf5 PREFIX?=$(HOME)/local INSTALL_BIN=$(PREFIX)/bin |