Loading Makefile +2 −5 Original line number Diff line number Diff line Loading @@ -14,7 +14,6 @@ PROJVER=$(shell $(PYTHON) -c "from pysen.revision import __version__; print(__ve PROJECT=$(PROJNAME)-$(PROJVER) .PHONY: all build build-dist build-ui build-docs install test runtest pylint clean clean-ui clean-docs distclean all: build Loading @@ -24,7 +23,7 @@ build: build-ui build-docs build-dist: build @$(PYTHON) setup.py bdist install: install-user: build pip install --user . uninstall: Loading @@ -39,7 +38,6 @@ runtest: pylint: @PYTHONPATH=. pylint --rcfile=.pylint.rc pysen scripts clean: clean-ui clean-docs @-$(PYTHON) setup.py clean @find . -name '*~' | xargs rm -f Loading @@ -55,8 +53,6 @@ tarball: git archive --format=tar --prefix=$(PROJECT)/ HEAD > $(PROJECT).tar gzip -f $(PROJECT).tar # "SUBSYSTEMS" build-docs: @$(MAKE) -C doc html Loading @@ -70,3 +66,4 @@ build-ui: clean-ui: @$(MAKE) -C pysen/ui clean .PHONY: all build build-dist build-ui build-docs install-user test runtest pylint clean clean-ui clean-docs distclean pysen/plot/qplot.py +1 −1 Original line number Diff line number Diff line Loading @@ -514,7 +514,7 @@ def plot_diffrun_new(axis, filenames, **kwargs): #print(data.keys()) plot_diffrun = plot_diffrun_old plot_diffrun = plot_diffrun_new def plot_transmission(ax0, ax1, filenames, **kwargs): Loading pysen/revision.py +2 −2 Original line number Diff line number Diff line Loading @@ -3,8 +3,8 @@ PySEN revision module """ import sys __version__ = "0.71" __release__ = "dev1" __date__ = "Aug, 2022" __release__ = "dev2" __date__ = "Aug 2, 2022" def version(full=False): "get pysen version number" Loading scripts/plot_diffrun.py +2 −2 Original line number Diff line number Diff line Loading @@ -67,7 +67,7 @@ def main_old(): print(e) def main_new(): def main(): "main entry" parser = argparse.ArgumentParser() parser.set_defaults(what=None, Loading Loading @@ -123,4 +123,4 @@ def main_new(): if __name__ == "__main__": main_old() main() setup.py +4 −4 Original line number Diff line number Diff line Loading @@ -23,9 +23,9 @@ setup( entry_points={ 'console_scripts': [ 'convert2hdf = pysen.inout.convert2hdf:main', 'nseplot = pysen.plot.nseplot:main', 'make_phase_table = pysen.plot.make_phase_table:main', 'xyz_analysis = pysen.plot.xyz_analysis:main', 'make_phase_table = pysen.echo.make_phase_table:main', 'nseplot = pysen.plot.nseplot:main', ] }, scripts = [ Loading Loading
Makefile +2 −5 Original line number Diff line number Diff line Loading @@ -14,7 +14,6 @@ PROJVER=$(shell $(PYTHON) -c "from pysen.revision import __version__; print(__ve PROJECT=$(PROJNAME)-$(PROJVER) .PHONY: all build build-dist build-ui build-docs install test runtest pylint clean clean-ui clean-docs distclean all: build Loading @@ -24,7 +23,7 @@ build: build-ui build-docs build-dist: build @$(PYTHON) setup.py bdist install: install-user: build pip install --user . uninstall: Loading @@ -39,7 +38,6 @@ runtest: pylint: @PYTHONPATH=. pylint --rcfile=.pylint.rc pysen scripts clean: clean-ui clean-docs @-$(PYTHON) setup.py clean @find . -name '*~' | xargs rm -f Loading @@ -55,8 +53,6 @@ tarball: git archive --format=tar --prefix=$(PROJECT)/ HEAD > $(PROJECT).tar gzip -f $(PROJECT).tar # "SUBSYSTEMS" build-docs: @$(MAKE) -C doc html Loading @@ -70,3 +66,4 @@ build-ui: clean-ui: @$(MAKE) -C pysen/ui clean .PHONY: all build build-dist build-ui build-docs install-user test runtest pylint clean clean-ui clean-docs distclean
pysen/plot/qplot.py +1 −1 Original line number Diff line number Diff line Loading @@ -514,7 +514,7 @@ def plot_diffrun_new(axis, filenames, **kwargs): #print(data.keys()) plot_diffrun = plot_diffrun_old plot_diffrun = plot_diffrun_new def plot_transmission(ax0, ax1, filenames, **kwargs): Loading
pysen/revision.py +2 −2 Original line number Diff line number Diff line Loading @@ -3,8 +3,8 @@ PySEN revision module """ import sys __version__ = "0.71" __release__ = "dev1" __date__ = "Aug, 2022" __release__ = "dev2" __date__ = "Aug 2, 2022" def version(full=False): "get pysen version number" Loading
scripts/plot_diffrun.py +2 −2 Original line number Diff line number Diff line Loading @@ -67,7 +67,7 @@ def main_old(): print(e) def main_new(): def main(): "main entry" parser = argparse.ArgumentParser() parser.set_defaults(what=None, Loading Loading @@ -123,4 +123,4 @@ def main_new(): if __name__ == "__main__": main_old() main()
setup.py +4 −4 Original line number Diff line number Diff line Loading @@ -23,9 +23,9 @@ setup( entry_points={ 'console_scripts': [ 'convert2hdf = pysen.inout.convert2hdf:main', 'nseplot = pysen.plot.nseplot:main', 'make_phase_table = pysen.plot.make_phase_table:main', 'xyz_analysis = pysen.plot.xyz_analysis:main', 'make_phase_table = pysen.echo.make_phase_table:main', 'nseplot = pysen.plot.nseplot:main', ] }, scripts = [ Loading