Skip to content

Commit c75066b

Browse files
committed
Merge branch 'fix-jsonschema-py3'
2 parents 544fc7f + bd5bce5 commit c75066b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.7.1 Mon Mar 15 23:05:00 2016 -0400
4+
**Bugfixes:**
5+
* Fix JSONschema extension in Python 3, and add test coverage for it
6+
- Thanks to @BastienAr for reporting it: https://github.com/svanoort/pyresttest/issues/173
7+
38
## 1.7.0 Sat Mar 06 14:30:00 2016 -0400
49
**Features:**
510
* Unicode support epic: fix handling of request body and a whole raft of smaller fixes + more tests: https://github.com/svanoort/pyresttest/issues/104

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
test_dependencies.append('discover')
1717

1818
setup(name='pyresttest',
19-
version='1.7.1.dev',
19+
version='1.7.1',
2020
description='Python RESTful API Testing & Microbenchmarking Tool',
2121
long_description='Python RESTful API Testing & Microbenchmarking Tool \n Documentation at https://github.com/svanoort/pyresttest',
2222
author='Sam Van Oort',
@@ -30,6 +30,7 @@
3030
'Programming Language :: Python :: 2.6',
3131
'Programming Language :: Python :: 2.7',
3232
'Programming Language :: Python :: 3.4',
33+
'Programming Language :: Python :: 3.5',
3334
'Topic :: Software Development :: Testing',
3435
'Topic :: Software Development :: Quality Assurance',
3536
'Topic :: Utilities'
@@ -44,7 +45,7 @@
4445
install_requires=dependencies,
4546
tests_require=test_dependencies,
4647
extras_require= {
47-
'JSONPath': ['jsonpath'],
48+
'JSONSchema': ['jsonschema'],
4849
'JMESPath': ['jmespath']
4950
},
5051
# Make this executable from command line when installed

0 commit comments

Comments
 (0)