forked from frappe/schools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] change in versioning: store __version__ in __init__.py
- Loading branch information
1 parent
6ba0141
commit 3f17677
Showing
4 changed files
with
13 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
from erpnext.__version__ import __version__ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
__version__ = '0.3.0' |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
from . import __version__ as app_version | ||
|
||
app_name = "schools" | ||
app_title = "ERPNext Schools" | ||
|
@@ -8,7 +9,6 @@ | |
app_icon = "octicon octicon-mortar-board" | ||
app_color = "blue" | ||
app_email = "[email protected]" | ||
app_version = "0.3.0" | ||
app_license = "GNU General Public License v3" | ||
|
||
# setup wizard | ||
|
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