-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Davide Albanese
committed
Mar 6, 2017
1 parent
74d2766
commit 767f01d
Showing
3 changed files
with
26 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
import os | ||
|
||
__version__ = "1.6.0" | ||
# PEP0440 compatible formatted version, see: | ||
# https://www.python.org/dev/peps/pep-0440/ | ||
# | ||
# Generic release markers: | ||
# X.Y | ||
# X.Y.Z # For bugfix releases | ||
# | ||
# Admissible pre-release markers: | ||
# X.YaN # Alpha release | ||
# X.YbN # Beta release | ||
# X.YrcN # Release Candidate | ||
# X.Y # Final release | ||
# | ||
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. | ||
# 'X.Y.dev0' is the canonical version of 'X.Y.dev' | ||
# | ||
__version__ = "1.6" | ||
|
||
THIRDPARTY_BIN_PATH = os.path.join(os.path.dirname(__file__), "thirdparty_bin") |