Skip to content

Commit a68e492

Browse files
authored
add certifi dep (#12)
* add certifi dep * lint
1 parent 4b06c67 commit a68e492

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.1] - 2021-02-09
9+
10+
### Fixed
11+
12+
- Adds missing dependency.
13+
814
## [1.3.0] - 2021-02-08
915

1016
### Added

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ For a complete API reference, check out [Patch's API Reference.](https://docs.us
1212

1313
Add the library to your `requirements.txt` file:
1414
```txt
15-
patch_api >= 1.3.0
15+
patch_api >= 1.3.1
1616
```
1717

1818
Then run:

Diff for: patch_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "1.3.0"
18+
__version__ = "1.3.1"
1919

2020
# import ApiClient
2121
from patch_api.api_client import ApiClient

Diff for: patch_api/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def to_debug_report(self):
341341
"OS: {env}\n"
342342
"Python Version: {pyversion}\n"
343343
"Version of the API: v1\n"
344-
"SDK Package Version: 1.3.0".format(env=sys.platform, pyversion=sys.version)
344+
"SDK Package Version: 1.3.1".format(env=sys.platform, pyversion=sys.version)
345345
)
346346

347347
def get_host_settings(self):

Diff for: setup.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,15 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "patch-api"
15-
VERSION = "1.3.0"
15+
VERSION = "1.3.1"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install
1919
#
2020
# prerequisite: setuptools
2121
# http://pypi.python.org/pypi/setuptools
2222

23-
REQUIRES = [
24-
"urllib3 >= 1.25.3",
25-
"python-dateutil",
26-
]
23+
REQUIRES = ["urllib3 >= 1.25.3", "python-dateutil", "certifi"]
2724

2825
setup(
2926
name=NAME,

0 commit comments

Comments
 (0)