- port to over-1.99

- remove --output
- remove unused filters
This commit is contained in:
Martinez 2016-09-27 22:23:07 +02:00
parent 99da8068be
commit 7e48c863c4
2 changed files with 42 additions and 39 deletions

8
version.py Normal file
View file

@ -0,0 +1,8 @@
#! /usr/bin/env python3
# encoding: utf-8
major = 0 # VERSION_MAJOR_IDENTIFIER
minor = 2 # VERSION_MINOR_IDENTIFIER
# VERSION_LAST_MM 0.2
patch = 2 # VERSION_PATCH_IDENTIFIER
str = ".".join(str(v) for v in (major, minor, patch))