Skip to content

Commit cf36206

Browse files
committed
Merge branch 'master' of https://github.com/klehman-rally/pyral into klehman-rally-master
resolved conflicts with klehman-rally master branch
2 parents 36ca7ed + 918bac5 commit cf36206

File tree

129 files changed

+20433
-14263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+20433
-14263
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.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,17 +73,17 @@ 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.25.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 :: 3.5
8584
Classifier: Programming Language :: Python :: 3.6
8685
Classifier: Programming Language :: Python :: 3.7
8786
Classifier: Programming Language :: Python :: 3.8
87+
Classifier: Programming Language :: Python :: 3.9
8888
Classifier: Topic :: Internet :: WWW/HTTP
8989
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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,3 +146,10 @@
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 - Jul 2021
151+
Fixed query builder to accommodate subset criteria (in | !in) and range criteria (between | !between).
152+
Dropped mention of Python 3.5 as a supported version in PKG-INFO.
153+
Added mention of Python 3.9 as a supported version in PKG-INFO.
154+
Excised all mentions of AgileCentral in the docs, replaced by 'Rally'.
155+

build_dist.py

Lines changed: 11 additions & 5 deletions
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',
@@ -63,6 +63,12 @@
6363
'doc/build/html/objects.inv',
6464
'doc/build/html/_sources',
6565
'doc/build/html/_static',
66+
'doc/build/html/_static/css',
67+
'doc/build/html/_static/css/fonts',
68+
'doc/build/html/_static/fonts',
69+
'doc/build/html/_static/fonts/Lato',
70+
'doc/build/html/_static/fonts/RobotoSlab',
71+
'doc/build/html/_static/js',
6672
]
6773

6874
#
@@ -243,10 +249,10 @@ def make_online_docs_zipfile(pkg_name, pkg_version, doc_dir, doc_files):
243249
zf_name = '%s-%s.docs.html.zip' % (pkg_name, pkg_version)
244250
cur_dir = os.getcwd()
245251
os.chdir(doc_dir)
246-
zf = zipfile.ZipFile(zf_name, 'w')
247-
for fn in doc_files:
248-
zf.write(fn, fn, zipfile.ZIP_DEFLATED)
249-
zf.close()
252+
#zf = zipfile.ZipFile(zf_name, 'w')
253+
#for fn in doc_files:
254+
# zf.write(fn, fn, zipfile.ZIP_DEFLATED)
255+
#zf.close()
250256

251257
## The following is what has been done before on the command line, when you
252258
## get the recursion opt on the above logic you can drop the os.system call
69.5 KB
Binary file not shown.

dist/pyral-1.5.1.docs.html.zip

8.89 MB
Binary file not shown.

dist/pyral-1.5.1.tar.gz

24.8 MB
Binary file not shown.

dists/pyral-1.5.1.tar.gz

24.8 MB
Binary file not shown.

dists/pyral-1.5.1.zip

8.99 MB
Binary file not shown.

0 commit comments

Comments
 (0)