Skip to content

Commit

Permalink
Merge branch 'fix-jsonschema-py3'
Browse files Browse the repository at this point in the history
  • Loading branch information
svanoort committed Mar 15, 2016
2 parents 544fc7f + bd5bce5 commit c75066b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.7.1 Mon Mar 15 23:05:00 2016 -0400
**Bugfixes:**
* Fix JSONschema extension in Python 3, and add test coverage for it
- Thanks to @BastienAr for reporting it: https://github.com/svanoort/pyresttest/issues/173

## 1.7.0 Sat Mar 06 14:30:00 2016 -0400
**Features:**
* Unicode support epic: fix handling of request body and a whole raft of smaller fixes + more tests: https://github.com/svanoort/pyresttest/issues/104
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
test_dependencies.append('discover')

setup(name='pyresttest',
version='1.7.1.dev',
version='1.7.1',
description='Python RESTful API Testing & Microbenchmarking Tool',
long_description='Python RESTful API Testing & Microbenchmarking Tool \n Documentation at https://github.com/svanoort/pyresttest',
author='Sam Van Oort',
Expand All @@ -30,6 +30,7 @@
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Utilities'
Expand All @@ -44,7 +45,7 @@
install_requires=dependencies,
tests_require=test_dependencies,
extras_require= {
'JSONPath': ['jsonpath'],
'JSONSchema': ['jsonschema'],
'JMESPath': ['jmespath']
},
# Make this executable from command line when installed
Expand Down

0 comments on commit c75066b

Please sign in to comment.