File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
8
## 1.7.0 Sat Mar 06 14:30:00 2016 -0400
4
9
** Features:**
5
10
* Unicode support epic: fix handling of request body and a whole raft of smaller fixes + more tests: https://github.com/svanoort/pyresttest/issues/104
Original file line number Diff line number Diff line change 16
16
test_dependencies .append ('discover' )
17
17
18
18
setup (name = 'pyresttest' ,
19
- version = '1.7.1.dev ' ,
19
+ version = '1.7.1' ,
20
20
description = 'Python RESTful API Testing & Microbenchmarking Tool' ,
21
21
long_description = 'Python RESTful API Testing & Microbenchmarking Tool \n Documentation at https://github.com/svanoort/pyresttest' ,
22
22
author = 'Sam Van Oort' ,
30
30
'Programming Language :: Python :: 2.6' ,
31
31
'Programming Language :: Python :: 2.7' ,
32
32
'Programming Language :: Python :: 3.4' ,
33
+ 'Programming Language :: Python :: 3.5' ,
33
34
'Topic :: Software Development :: Testing' ,
34
35
'Topic :: Software Development :: Quality Assurance' ,
35
36
'Topic :: Utilities'
44
45
install_requires = dependencies ,
45
46
tests_require = test_dependencies ,
46
47
extras_require = {
47
- 'JSONPath ' : ['jsonpath ' ],
48
+ 'JSONSchema ' : ['jsonschema ' ],
48
49
'JMESPath' : ['jmespath' ]
49
50
},
50
51
# Make this executable from command line when installed
You can’t perform that action at this time.
0 commit comments