project-stats

keep track of your projects
git clone https://git.ce9e.org/project-stats.git

commit
3723867d220acadff7ca18384b17a034e18e34a1
parent
ac8f4aa00bb590b4e5ee765ec32e804f903c4d7b
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2015-03-25 08:16
update filecachetools

Diffstat

M project_stats.py 5 -----
M setup.py 2 +-

2 files changed, 1 insertions, 6 deletions


diff --git a/project_stats.py b/project_stats.py

@@ -376,11 +376,6 @@ def main():
  376   376     args = parse_args()
  377   377     config = load_config(os.path.expanduser(args.config))
  378   378 
  379    -1     cheesecake_index.cache_clear()
  380    -1     get_bower_info.cache_clear()
  381    -1     get_json.cache_clear()
  382    -1     get_xml.cache_clear()
  383    -1 
  384   379     keys = config['projects'].keys()
  385   380     if args.query is not None:
  386   381         keys = filter(lambda k: args.query.lower() in k.lower(), keys)

diff --git a/setup.py b/setup.py

@@ -12,7 +12,7 @@ setup(
   12    12     py_modules=['project_stats'],
   13    13     install_requires=[
   14    14         'python-dateutil',
   15    -1         'filecachetools',
   -1    15         'filecachetools>=0.1.0',
   16    16         'requests',
   17    17         'pyyaml',
   18    18     ],