Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ format:
# Release process
# ---------------
GITVER := $(shell git describe --tags --always --dirty=-dev)
VERSION := $(shell python -c 'print "$(GITVER)"[1:].partition("-")[0]')
ITERATION := $(shell python -c 'print ("$(GITVER)"[1:].partition("-")[2] or "0")')
NEXT_VERSION := v0.$(shell python -c 'print int("$(GITVER)"[1:].partition("-")[0][2:]) + 1')
VERSION := $(shell python3 -c 'print("$(GITVER)"[1:].partition("-")[0])')
ITERATION := $(shell python3 -c 'print(("$(GITVER)"[1:].partition("-")[2] or "0"))')
NEXT_VERSION := v0.$(shell python3 -c 'print(int("$(GITVER)"[1:].partition("-")[0][2:]) + 1)')

.PHONY: release

Expand Down