File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed
Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## v7.1.1 (2022-05-09)
4+
5+ - Fixes the inclusion of the new ` beta ` module
6+
37## v7.1.0 (2022-05-09)
48
59- Adds a ` lowest_rate() ` function to Orders and Pickups
Original file line number Diff line number Diff line change 1- VERSION = "7.1.0 "
1+ VERSION = "7.1.1 "
22
33elements = VERSION .split ("-" )
44numbers = [str (v ) for v in elements [0 ].split ("." )]
Original file line number Diff line number Diff line change 1- from setuptools import setup
1+ from setuptools import (
2+ find_packages ,
3+ setup ,
4+ )
25
36
47REQUIREMENTS = [
3033
3134setup (
3235 name = "easypost" ,
33- version = "7.1.0 " ,
36+ version = "7.1.1 " ,
3437 description = "EasyPost Shipping API Client Library for Python" ,
3538 author = "EasyPost" ,
3639 author_email = "support@easypost.com" ,
3740 url = "https://easypost.com/" ,
38- packages = ["easypost" ],
41+ packages = find_packages (
42+ exclude = [
43+ "examples" ,
44+ "tests" ,
45+ ]
46+ ),
3947 install_requires = REQUIREMENTS ,
4048 extras_require = {
4149 "dev" : DEV_REQUIREMENTS + CPYTHON_DEV_REQUIREMENTS ,
You can’t perform that action at this time.
0 commit comments