Loading Makefile +9 −1 Original line number Diff line number Diff line # Makefile for PySEN PYTHON=python -u PROJNAME=pysen PYUIC:=$(shell command -v pyuic5 2> /dev/null) ifeq ($(strip $(PYUIC)),) Loading @@ -9,6 +10,8 @@ ifeq ($(strip $(PYUIC)),) $(error pyuic5 or pyuic4 are missing, check PyQt installation) endif PROJVER=$(shell $(PYTHON) -c "from pysen.revision import VERSION; print(VERSION)") PROJECT=$(PROJNAME)-$(PROJVER) .PHONY: all build build-ui build-docs dist install test runtest check clean clean-ui clean-docs distclean Loading Loading @@ -42,7 +45,12 @@ clean: clean-ui clean-docs @rm -f lint.log distclean: clean rm -rf build dist MANIFEST cachedir *.egg-info rm -rf build dist MANIFEST cachedir *.egg-info $(PROJECT).tar.gz tarball: git archive --format=tar --prefix=$(PROJECT)/ HEAD > $(PROJECT).tar gzip -f $(PROJECT).tar # "SUBSYSTEMS" Loading pysen/revision.py +1 −1 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ PySEN revision module """ import sys __version__ = "0.7.0" __version__ = "0.7.1" __release__ = "dev1" __date__ = "Feb 13, 2019" # Loading Loading
Makefile +9 −1 Original line number Diff line number Diff line # Makefile for PySEN PYTHON=python -u PROJNAME=pysen PYUIC:=$(shell command -v pyuic5 2> /dev/null) ifeq ($(strip $(PYUIC)),) Loading @@ -9,6 +10,8 @@ ifeq ($(strip $(PYUIC)),) $(error pyuic5 or pyuic4 are missing, check PyQt installation) endif PROJVER=$(shell $(PYTHON) -c "from pysen.revision import VERSION; print(VERSION)") PROJECT=$(PROJNAME)-$(PROJVER) .PHONY: all build build-ui build-docs dist install test runtest check clean clean-ui clean-docs distclean Loading Loading @@ -42,7 +45,12 @@ clean: clean-ui clean-docs @rm -f lint.log distclean: clean rm -rf build dist MANIFEST cachedir *.egg-info rm -rf build dist MANIFEST cachedir *.egg-info $(PROJECT).tar.gz tarball: git archive --format=tar --prefix=$(PROJECT)/ HEAD > $(PROJECT).tar gzip -f $(PROJECT).tar # "SUBSYSTEMS" Loading
pysen/revision.py +1 −1 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ PySEN revision module """ import sys __version__ = "0.7.0" __version__ = "0.7.1" __release__ = "dev1" __date__ = "Feb 13, 2019" # Loading