From 7b67dafcec5341458b4be0f4d26e08076db8b57b Mon Sep 17 00:00:00 2001 From: pgleeson Date: Tue, 4 Jun 2024 11:37:17 +0100 Subject: [PATCH] Tweak activity --- .gitignore | 1 + python/examples/activity.py | 2 +- python/setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 81a3c25..1e687c6 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ python/examples/NeuroML* github.info /python/private /python/PyOSB.egg-info +/python/examples/github.auth diff --git a/python/examples/activity.py b/python/examples/activity.py index b44e481..56c1d6f 100644 --- a/python/examples/activity.py +++ b/python/examples/activity.py @@ -25,7 +25,7 @@ if len(sys.argv) == 2: project_num = int(sys.argv[1]) - for project in osb.get_projects(min_curation_level="None", limit=project_num): + for project in osb.get_projects(min_curation_level="Low", limit=project_num): print("\n%s\tProject: %s (%s)\n" % ("-"*8, project.name, project.identifier)) diff --git a/python/setup.py b/python/setup.py index 391d982..cecebce 100644 --- a/python/setup.py +++ b/python/setup.py @@ -6,7 +6,7 @@ setup( name = "PyOSB", - version = '0.5.1', + version = '0.5.2', packages = ['osb', 'osb.metadata', 'osb.resources', 'osb.utils'], author = "Padraig Gleeson, Richard Gerkin", author_email = "p.gleeson@gmail.com",