Skip to content

Commit 58bff5d

Browse files
committed
fixed defect in rallyresp.py when pagesize is 1, upped version to 1.4.2
1 parent be3a874 commit 58bff5d

27 files changed

Lines changed: 59 additions & 57 deletions

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.19.1
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',
108 Bytes
Binary file not shown.

doc/build/doctrees/index.doctree

-69 Bytes
Binary file not shown.
-1.37 KB
Binary file not shown.
-9 Bytes
Binary file not shown.

doc/build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: c43044dc0086d4911304d8ce8a335bd6
3+
config: 710a2f9f03546537ef3561c438ba8030
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

doc/build/html/genindex.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1111

12-
<title>Index &mdash; pyral 1.4.1 documentation</title>
12+
<title>Index &mdash; pyral 1.4.2 documentation</title>
1313

1414

1515

@@ -34,7 +34,7 @@
3434
<link rel="index" title="Index"
3535
href="#"/>
3636
<link rel="search" title="Search" href="search.html"/>
37-
<link rel="top" title="pyral 1.4.1 documentation" href="index.html"/>
37+
<link rel="top" title="pyral 1.4.2 documentation" href="index.html"/>
3838

3939

4040
<script src="_static/js/modernizr.min.js"></script>
@@ -63,7 +63,7 @@
6363

6464

6565
<div class="version">
66-
1.4.1
66+
1.4.2
6767
</div>
6868

6969

@@ -437,7 +437,7 @@ <h2 id="U">U</h2>
437437
<script type="text/javascript">
438438
var DOCUMENTATION_OPTIONS = {
439439
URL_ROOT:'./',
440-
VERSION:'1.4.1',
440+
VERSION:'1.4.2',
441441
COLLAPSE_INDEX:false,
442442
FILE_SUFFIX:'.html',
443443
HAS_SOURCE: true

0 commit comments

Comments
 (0)