-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* **Update:** Stalker is now compatible with SQLAlchemy 1.4, psycopg2…
…-binary 2.86 and Python 3.9+. But more work still needs to be done to make it SQLAlchemy 2.0 compatible.
- Loading branch information
Showing
19 changed files
with
155 additions
and
127 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
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 |
---|---|---|
|
@@ -7,12 +7,12 @@ | |
|
||
import sys | ||
|
||
__version__ = '0.2.24.3' | ||
__version__ = '0.2.25' | ||
|
||
__title__ = "stalker" | ||
__description__ = 'A Production Asset Management (ProdAM) System' | ||
__uri__ = 'http://github.com/eoyilmaz/stalker' | ||
__doc__ = __description__ + " <" + __uri__ + ">" | ||
__doc__ = "%s <%s>" % (__description__, __uri__) | ||
|
||
__author__ = "Erkan Ozgur Yilmaz" | ||
__email__ = '[email protected]' | ||
|
@@ -33,11 +33,9 @@ | |
from stalker import config | ||
defaults = config.Config() | ||
|
||
from stalker.models.auth import (Group, Permission, User, LocalSession, Role, | ||
AuthenticationLog) | ||
from stalker.models.auth import Group, Permission, User, LocalSession, Role, AuthenticationLog | ||
from stalker.models.asset import Asset | ||
from stalker.models.budget import (Budget, BudgetEntry, Good, PriceList, | ||
Invoice, Payment) | ||
from stalker.models.budget import Budget, BudgetEntry, Good, PriceList, Invoice, Payment | ||
from stalker.models.client import Client, ClientUser | ||
from stalker.models.department import Department, DepartmentUser | ||
from stalker.models.entity import SimpleEntity, Entity, EntityGroup | ||
|
@@ -50,8 +48,7 @@ | |
TargetEntityTypeMixin, UnitMixin, | ||
WorkingHoursMixin) | ||
from stalker.models.note import Note | ||
from stalker.models.project import (Project, ProjectUser, ProjectClient, | ||
ProjectRepository) | ||
from stalker.models.project import Project, ProjectUser, ProjectClient, ProjectRepository | ||
from stalker.models.review import Review, Daily, DailyLink | ||
from stalker.models.repository import Repository | ||
from stalker.models.scene import Scene | ||
|
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
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
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
Oops, something went wrong.