Skip to content

Commit b08d064

Browse files
committed
rev up to 1.5.1, prep for changes to query_builder.py to incorporate range and subset (between and in) query relational operators
1 parent 9d6f6b7 commit b08d064

25 files changed

+2704
-34
lines changed

PKG-INFO

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Metadata-Version: 1.1
22
Name: pyral
3-
Version: 1.5.0
3+
Version: 1.5.1
44
Summary: Python toolkit for Rally REST API
55
Home-page: https://github.com/RallyTools/RallyRestToolkitForPython
66
Author: Kip Lehman (Broadcom, Enterprise Software Division)
77
License: BSD
8-
Download-URL: https://github.com/RallyTools/RallyRestToolkitForPython/raw/master/dists/pyral-1.5.0.zip
8+
Download-URL: https://github.com/RallyTools/RallyRestToolkitForPython/raw/master/dists/pyral-1.5.1.zip
99
Description: This is the README file for pyral, a package implementing a
1010
Pythonic interface to the 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.12.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.5.0) has been tested with requests 2.22.0.
31+
The most recent release of pyral (1.5.1) has been tested with requests 2.22.0.
3232
The six module is also required.
3333

3434

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

7474
Keywords: rally,api
7575
Requires: six
76-
Requires: requests>=2.12.5
76+
Requires: requests>=2.18.0
7777
Platform: any
7878
Classifier: Development Status :: 5 - Production/Stable
7979
Classifier: Environment :: Web Environment
@@ -85,5 +85,6 @@ Classifier: Programming Language :: Python :: 3.5
8585
Classifier: Programming Language :: Python :: 3.6
8686
Classifier: Programming Language :: Python :: 3.7
8787
Classifier: Programming Language :: Python :: 3.8
88+
Classifier: Programming Language :: Python :: 3.9
8889
Classifier: Topic :: Internet :: WWW/HTTP
8990
Classifier: Topic :: Software Development :: Libraries

README.rst

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

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

@@ -74,7 +74,7 @@ relevant packages.
7474
>> import requests
7575
>> import pyral
7676
>> pyral.__version__
77-
(1, 5, 0)
77+
(1, 5, 1)
7878

7979

8080

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.12.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.5.0) has been tested with requests 2.22.0.
23+
The most recent release of pyral (1.5.1) has been tested with requests 2.22.0.
2424
The six module is also required.
2525

2626

VERSIONS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,3 +146,7 @@
146146
Fixed defect where a feature item could not be added to a Milestones collection
147147
Fixed defect in query construction (and results) when a target attribute value contains a '&' character.
148148

149+
150+
1.5.1 - Jun 2021
151+
Fixed query builder to accommodate subset criteria (in | !in) and range criteria (between | !between)
152+

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.5.0"
17+
VERSION = "1.5.1"
1818

1919
AUX_FILES = ['MANIFEST.in',
2020
'PKG-INFO',

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '1.5.0'
51+
version = '1.5.1'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '1.5.0'
53+
release = '1.5.1'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

examples/defrevs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ def main(args):
2828
criteria = "FormattedID = %s" % target
2929

3030
defect = rally.get('Defect', fetch=fields, query=criteria, instance=True)
31+
print(defect)
3132

3233
print("%s %10.10s %-11s %s" % (defect.FormattedID, defect.CreationDate,
3334
defect.State, defect.Name))

examples/get_schedulable_artifacts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python2.7
1+
#!/usr/local/bin/python3.8
22

33
#################################################################################################
44
#

pyral/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = (1, 5, 0)
1+
__version__ = (1, 5, 1)
22
from .config import rallySettings, rallyWorkset
33
from .restapi import Rally, RallyRESTAPIError, RallyUrlBuilder
44
from .restapi import AgileCentral

pyral/cargotruck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from six.moves import queue
77
Queue = queue.Queue
88

9-
__version__ = (1, 5, 0)
9+
__version__ = (1, 5, 1)
1010

1111
#########################################################################################################
1212

0 commit comments

Comments
 (0)