File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ ### 4.1.0 2020-05-11
2+ * change tests to use [ vcrpy] ( https://github.com/kevin1024/vcrpy ) so they are more reliable
3+ * add ` original_exception ` to ` easypost.Error ` in cases where we are re-raising an underlying error (e.g., an HTTP exception)
4+ * fix a bunch of flake8 warnings
5+ * [ potentially-breaking] soft-deprecate Python 3.3 and 3.4. these have been dropped by most of the libraries we use, so probably don't work anyway.
6+
17### 4.0.2 2020-05-05
28* cleaned up how the ` __version__ ` attribute is populated to no longer throw warnings (#95 , #98 , #104 )
39* added some misding reports
Original file line number Diff line number Diff line change 11import pkg_resources
22
33
4- VERSION = '4.0.2 '
4+ VERSION = '4.1.0 '
55
66if '-' in VERSION :
77 VERSION_INFO = tuple ([int (v ) for v in VERSION .split ('-' )[0 ].split ('.' )] + VERSION .split ('-' )[1 :])
Original file line number Diff line number Diff line change 2222
2323setup (
2424 name = 'easypost' ,
25- version = '4.0.2 ' ,
25+ version = '4.1.0 ' ,
2626 description = 'EasyPost Shipping API Client Library for Python' ,
2727 author = 'EasyPost' ,
2828 author_email = 'support@easypost.com' ,
You can’t perform that action at this time.
0 commit comments