-
Notifications
You must be signed in to change notification settings - Fork 259
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 #32 from jwbixby/master
Remove caching functionality to reduce the possibility of a memory leak
- Loading branch information
Showing
6 changed files
with
17 additions
and
36 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
History | ||
------- | ||
|
||
1.0.0 | ||
+++++ | ||
released 2016-3-16 | ||
|
||
- Removes caching layer on rule decorator |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
include HISTORY.rst LICENSE README.md |
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,4 +1,4 @@ | ||
__version__ = '0.2.0' | ||
__version__ = '1.0.0' | ||
|
||
from .engine import run_all | ||
from .utils import export_rule_data | ||
|
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 |
---|---|---|
|
@@ -4,10 +4,15 @@ | |
|
||
from business_rules import __version__ as version | ||
|
||
with open('History.rst') as f: | ||
history = f.read() | ||
|
||
description = 'Python DSL for setting up business intelligence rules that can be configured without code' | ||
|
||
setuptools.setup( | ||
name='business-rules', | ||
version=version, | ||
description='Python DSL for setting up business intelligence rules that can be configured without code', | ||
description='{0}\n\n{1}'.format(description, history), | ||
author='Venmo', | ||
author_email='[email protected]', | ||
url='https://github.com/venmo/business-rules', | ||
|
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