Skip to content

Commit 012232f

Browse files
authored
chore: prepares v6.0.0 for release (#146)
* chore: prepares v6.0.0 for release * fix: unpack install_requires list
1 parent b323581 commit 012232f

File tree

3 files changed

+25
-20
lines changed

3 files changed

+25
-20
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
## CHANGELOG
22

3-
### NEXT RELEASE
3+
### v6.0.0 2021-10-12
4+
5+
* JSON encodes POST bodies instead of form encoding them
6+
* Adds support for `tax_identifiers`
7+
* Black formatting and iSort tools added to repo
8+
* Bumps `requests` from v1 to v2
9+
* Various refactor efforts and code cleanup
410

511
### v5.1.3 2021-07-20
612

easypost/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "5.1.3"
1+
VERSION = "6.0.0"
22

33
if "-" in VERSION:
44
VERSION_INFO = tuple([int(v) for v in VERSION.split("-")[0].split(".")] + VERSION.split("-")[1:])

setup.py

+17-18
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
import io
22
import sys
33

4-
54
try:
65
from setuptools import setup
76
except ImportError:
87
from distutils.core import setup
98

109
install_requires = [
11-
'requests >= 2.4.3',
12-
'six'
10+
"requests >= 2.4.3",
11+
"six",
1312
]
1413

1514

@@ -18,28 +17,28 @@
1817
else:
1918
long_description_open = open
2019

21-
with long_description_open('README.md', encoding='utf-8') as f:
20+
with long_description_open("README.md", encoding="utf-8") as f:
2221
long_description = f.read()
2322

2423

2524
setup(
26-
name='easypost',
27-
version='5.1.3',
28-
description='EasyPost Shipping API Client Library for Python',
29-
author='EasyPost',
30-
author_email='support@easypost.com',
31-
url='https://easypost.com/',
32-
packages=['easypost'],
25+
name="easypost",
26+
version="6.0.0",
27+
description="EasyPost Shipping API Client Library for Python",
28+
author="EasyPost",
29+
author_email="support@easypost.com",
30+
url="https://easypost.com/",
31+
packages=["easypost"],
3332
install_requires=install_requires,
34-
test_suite='test',
33+
test_suite="test",
3534
long_description=long_description,
36-
long_description_content_type='text/markdown',
35+
long_description_content_type="text/markdown",
3736
project_urls={
38-
'Docs': 'https://www.easypost.com/docs/api',
39-
'Tracker': 'https://github.com/EasyPost/easypost-python/issues',
40-
'Source': 'https://github.com/EasyPost/easypost-python',
37+
"Docs": "https://www.easypost.com/docs/api",
38+
"Tracker": "https://github.com/EasyPost/easypost-python/issues",
39+
"Source": "https://github.com/EasyPost/easypost-python",
4140
},
42-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4',
41+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4",
4342
classifiers=[
4443
"Development Status :: 5 - Production/Stable",
4544
"Environment :: Web Environment",
@@ -53,5 +52,5 @@
5352
"Operating System :: OS Independent",
5453
"License :: OSI Approved :: MIT License",
5554
"Topic :: Software Development :: Libraries",
56-
]
55+
],
5756
)

0 commit comments

Comments
 (0)