This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from 2ndQuadrant/dev/tpaexec397-packaging
Add variable to append local version to release artifacts
- Loading branch information
Showing
3 changed files
with
4 additions
and
3 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 |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
sys.exit(1) | ||
|
||
sys.path.insert(0, os.path.abspath('lib')) | ||
from ansible.release import __version__, __author__ | ||
from ansible.release import __version__, __tpa_version__, __author__ | ||
|
||
|
||
SYMLINK_CACHE = 'SYMLINK_CACHE.json' | ||
|
@@ -275,7 +275,7 @@ def get_dynamic_setup_params(): | |
'sdist': SDistCommand, | ||
}, | ||
name='ansible', | ||
version=__version__, | ||
version=__version__ + '+' + __tpa_version__, | ||
description='Radically simple IT automation', | ||
author=__author__, | ||
author_email='[email protected]', | ||
|