Skip to content

Commit 30ca7ae

Browse files
Merge pull request #145 from klehman-rally/master
support small pagesize directives
2 parents 4c3b08c + 095a6bf commit 30ca7ae

32 files changed

+59
-57
lines changed

PKG-INFO

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Metadata-Version: 1.1
22
Name: pyral
3-
Version: 1.4.1
3+
Version: 1.4.2
44
Summary: Python toolkit for Agile Central (Rally) REST API
55
Home-page: https://github.com/RallyTools/RallyRestToolkitForPython
66
Author: Kip Lehman (CA Technologies, AgileCentral Business Unit)
77
License: BSD
8-
Download-URL: https://github.com/RallyTools/RallyRestToolkitForPython/raw/master/dists/pyral-1.4.1.zip
8+
Download-URL: https://github.com/RallyTools/RallyRestToolkitForPython/raw/master/dists/pyral-1.4.2.zip
99
Description: This is the README file for pyral, a package implementing a
1010
Pythonic interface to the Agile Central (formerly Rally) REST API
1111

@@ -28,7 +28,7 @@ Description: This is the README file for pyral, a package implementing a
2828
The pyral package requires the use of Kenneth Reitz's requests package using version 2.8.0 or better.
2929
As of requests version 2.0.0, there is support for HTTPS over HTTP proxy via the CONNECT request.
3030
The requests package can be found via the Python Package Index site (http://pypi/python.org/index).
31-
The most recent release of pyral (1.4.1) has been tested with requests 2.12.5.
31+
The most recent release of pyral (1.4.2) has been tested with requests 2.19.1.
3232
The six module is also required.
3333

3434

@@ -73,17 +73,17 @@ Description: This is the README file for pyral, a package implementing a
7373

7474
Keywords: rally,agilecentral,api
7575
Requires: six
76-
Requires: requests>=2.10.1
76+
Requires: requests>=2.12.5
7777
Platform: any
7878
Classifier: Development Status :: 5 - Production/Stable
7979
Classifier: Environment :: Web Environment
8080
Classifier: Intended Audience :: Developers
8181
Classifier: License :: OSI Approved :: BSD License
8282
Classifier: Operating System :: OS Independent
8383
Classifier: Programming Language :: Python
84-
Classifier: Programming Language :: Python :: 2.6
8584
Classifier: Programming Language :: Python :: 2.7
8685
Classifier: Programming Language :: Python :: 3.5
8786
Classifier: Programming Language :: Python :: 3.6
87+
Classifier: Programming Language :: Python :: 3.7
8888
Classifier: Topic :: Internet :: WWW/HTTP
8989
Classifier: Topic :: Software Development :: Libraries

README.rst

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Obtain the requests_ package and install it according to that package's directio
4848
As of requests-2.0.0, there is support for HTTPS over HTTP proxy via the CONNECT request.
4949
Use of requests-2.x or better is recommended for use with pyral.
5050
The requests_ package can be found via the Python Package Index site (http://pypi/python.org/index).
51-
The most recent release of pyral (1.4.1) has been tested using requests 2.12.5.
51+
The most recent release of pyral (1.4.2) has been tested using requests 2.19.1.
5252

5353
Obtain and install the six_ module (available from PyPI at https://pypi.python.org/pypi/six)
5454

@@ -72,11 +72,11 @@ relevant packages.
7272
::
7373

7474
$ python
75-
Python 3.5.2 [other Python interpreter info elided ...]
75+
Python 3.6.4 [other Python interpreter info elided ...]
7676
>> import requests
7777
>> import pyral
7878
>> pyral.__version__
79-
(1, 4, 1)
79+
(1, 4, 2)
8080

8181

8282

@@ -264,24 +264,26 @@ The item names in config files **are** case sensitive.
264264
--apikey=<APIKey> valid Rally API Key value
265265
--rallyWorkspace=<bar> Workspace in Rally you want to interact with
266266
--rallyProject=<bar> Project in Rally you want to interact with
267-
--ping boolean, ping Rally server before connection attempt?
268267
====================================== =========================================
269268

270269

271270
Prerequisites
272271
-------------
273272

274-
* Python 3.5 or 3.6 (this package not tested with earlier versions of Python 3.x) OR
275-
* Python 2.6 or 2.7 (of these two, 2.7 is preferred)
273+
* Python 3.5, 3.6 or 3.7 (this package not tested with earlier versions of Python 3.x) OR
274+
* Python 2.7 (explicit support for this version will end with the 1.4.x line, 1.5.x will not support 2.7)
276275
* The requests_ package, 2.0.0 or better (2.0.0 finally includes support for https proxy),
277-
requests 2.12.5 is recommended.
276+
requests 2.19.1 is recommended.
278277
* The six_ package.
279278

280279
.. _requests: http://github.com/kennethreitz/requests
281280
.. _six: https://bitbucket.org/gutworth/six
282281

283282
Versions
284283
--------
284+
**1.4.2**
285+
Fixed defect in returning RallyRESTResponse when pagesize set to 1
286+
285287
**1.4.1**
286288
Support for TestFolderStatus attribute in TestFolder.
287289
Fixed defect in addCollectionItems

README.short

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Requirements
2020
The pyral package requires the use of Kenneth Reitz's requests package using version 2.8.0 or better.
2121
As of requests version 2.0.0, there is support for HTTPS over HTTP proxy via the CONNECT request.
2222
The requests package can be found via the Python Package Index site (http://pypi/python.org/index).
23-
The most recent release of pyral (1.4.1) has been tested with requests 2.12.5.
23+
The most recent release of pyral (1.4.2) has been tested with requests 2.19.1.
2424
The six module is also required.
2525

2626

build_dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re
1515

1616
PACKAGE_NAME = "pyral"
17-
VERSION = "1.4.1"
17+
VERSION = "1.4.2"
1818

1919
AUX_FILES = ['MANIFEST.in',
2020
'PKG-INFO',
76.1 KB
Binary file not shown.

dist/pyral-1.4.2.docs.html.zip

874 KB
Binary file not shown.

dist/pyral-1.4.2.tar.gz

950 KB
Binary file not shown.

dists/pyral-1.4.2.tar.gz

950 KB
Binary file not shown.

dists/pyral-1.4.2.zip

329 KB
Binary file not shown.
108 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)