Skip to content

Commit 75c3407

Browse files
committed
mod official name to reference Agile Central in setup.py, mention threads keyword arg in get method in the the interface.rst file.
1 parent fb19bfb commit 75c3407

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

doc/source/interface.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,13 +377,14 @@ Core REST methods and CRUD aliases
377377
- fetch = True/False or "List,Of,Attributes,We,Are,Interested,In"
378378
- query = 'FieldName = "some value"' or ['EstimatedHours = 10', 'MiddleName != "Shamu"', 'Name contains "foogelhorn pop-tarts"', etc.]
379379
- instance = True/False (defaults to False)
380-
- pagesize = n (defaults to 200)
380+
- pagesize = n (defaults to 500)
381381
- start = n (defaults to 1)
382382
- limit = n (defaults to no limit)
383383
- workspace = workspace_name (defaults to current workspace selected)
384384
- project = project_name (defaults to current project selected)
385385
- projectScopeUp = True/False (defaults to False)
386386
- projectScopeDown True/False (defaults to False)
387+
- threads = n (value of 1 insures single-threading, any other value is advisory)
387388

388389
Returns a RallyRESTResponse object that has errors and warnings attributes that
389390
should be checked before any further operations on the object are attempted.
@@ -475,7 +476,7 @@ Core REST methods and CRUD aliases
475476
keyword arguments:
476477
- projectScopeUp = true/false (defaults to false)
477478
- projectScopeDown = true/false (defaults to false)
478-
- pagesize = n (defaults to 200)
479+
- pagesize = n (defaults to 500)
479480
- start = n (defaults to 1)
480481
- limit = n (defaults to no limit)
481482

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
PACKAGE = 'pyral'
1717
VERSION = '1.3.0'
18-
OFFICIAL_NAME = 'Python toolkit for Rally REST API'
18+
OFFICIAL_NAME = 'Python toolkit for Agile Central (Rally) REST API'
1919
PKG_URL_NAME = 'python-toolkit-rally-rest-api'
2020
AUTHOR = 'Kip Lehman (Rally Software Development)'
2121
AUTHOR_EMAIL = '[email protected]'
@@ -27,7 +27,7 @@
2727
FULL_DESCRIPTION = 'README.rst'
2828
KEYWORDS = ['rally', 'agilecentral', 'api']
2929

30-
MINIMUM_REQUESTS_VERSION = '2.8.1' # test this with 2.12.5
30+
MINIMUM_REQUESTS_VERSION = '2.10.1' # 2.12.5 is recommended
3131
REQUIRES = ['six',
3232
'requests>=%s' % MINIMUM_REQUESTS_VERSION
3333
]
@@ -42,6 +42,7 @@
4242
'Programming Language :: Python :: 2.6',
4343
'Programming Language :: Python :: 2.7',
4444
'Programming Language :: Python :: 3.5',
45+
'Programming Language :: Python :: 3.6',
4546
'Topic :: Internet :: WWW/HTTP',
4647
'Topic :: Software Development :: Libraries',
4748
]

0 commit comments

Comments
 (0)