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 1
1
# CHANGELOG
2
2
3
+ ## v7.1.1 (2022-05-09)
4
+
5
+ - Fixes the inclusion of the new ` beta ` module
6
+
3
7
## v7.1.0 (2022-05-09)
4
8
5
9
- 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 "
2
2
3
3
elements = VERSION .split ("-" )
4
4
numbers = [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
+ )
2
5
3
6
4
7
REQUIREMENTS = [
30
33
31
34
setup (
32
35
name = "easypost" ,
33
- version = "7.1.0 " ,
36
+ version = "7.1.1 " ,
34
37
description = "EasyPost Shipping API Client Library for Python" ,
35
38
author = "EasyPost" ,
36
39
37
40
url = "https://easypost.com/" ,
38
- packages = ["easypost" ],
41
+ packages = find_packages (
42
+ exclude = [
43
+ "examples" ,
44
+ "tests" ,
45
+ ]
46
+ ),
39
47
install_requires = REQUIREMENTS ,
40
48
extras_require = {
41
49
"dev" : DEV_REQUIREMENTS + CPYTHON_DEV_REQUIREMENTS ,
You can’t perform that action at this time.
0 commit comments