Skip to content

Commit b54b48b

Browse files
authored
require certifi (#7)
1 parent f36b20b commit b54b48b

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

Diff for: .github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
### SDK Release Checklist
1010

1111
- [ ] Have you added an integration test for the changes?
12-
- [ ] Have you built the gem locally and made queries against it successfully?
12+
- [ ] Have you built the library locally and made queries against it successfully?
1313
- [ ] Did you update the changelog?
1414
- [ ] Did you bump the package version?
1515
- [ ] For breaking changes, did you plan for the release of the new SDK versions and deploy the API to production?

Diff for: .github/workflows/publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Publish
22
on:
3+
push:
34
release:
45
types: [created]
56

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SHELL = /bin/bash
22

33
build:
4-
pip install -r requirements.txt && \
4+
pip install -r requirements.txt \
55
python setup.py install
66

77
lint:
@@ -12,4 +12,4 @@ test:
1212
pip install -r requirements.txt && \
1313
python -m unittest discover test/
1414

15-
.PHONY: build lint test publish
15+
.PHONY: build test lint publish

Diff for: setup.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@
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)