Skip to content

Commit 823c067

Browse files
author
childish-sambino
authored
Merge branch 'master' into master
2 parents 31b6027 + 45c6d44 commit 823c067

20 files changed

+285
-175
lines changed

.github/ISSUE_TEMPLATE

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE

Lines changed: 0 additions & 24 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,5 @@ cleanup.sh
6969
.idea
7070
README.txt
7171
python_http_client/VERSION.txt
72+
Pipfile
73+
Pipfile.lock

.travis.yml

Lines changed: 31 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,45 @@
1+
dist: xenial # required for Python >= 3.7
12
language: python
2-
sudo: false
33
cache: pip
44
python:
5-
- '2.7'
6-
- '3.4'
7-
- '3.5'
8-
- '3.6'
9-
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
10-
matrix:
11-
include:
12-
- python: 3.7
13-
dist: xenial
14-
sudo: true
15-
fail_fast: true
5+
- '2.7'
6+
- '3.4'
7+
- '3.5'
8+
- '3.6'
9+
- '3.7'
10+
- '3.8'
1611
before_install:
17-
- pip install pycodestyle
18-
- if [[ "$TRAVIS_PYTHON_VERSION" == 2.7* ]]; then pip install mock; fi
12+
- pip install pycodestyle coverage codecov
13+
- if [[ "$TRAVIS_PYTHON_VERSION" == 2.7* ]]; then pip install mock; fi
1914
install:
20-
- pip install codecov
21-
- travis_retry pip install coverage
22-
- python setup.py install
23-
- pip install codecov
15+
- pip install virtualenv --upgrade
16+
- make install
17+
- make test-install
2418
script:
25-
- pycodestyle
26-
- coverage run -m unittest discover
19+
- pycodestyle --exclude=venv
20+
- coverage run -m unittest discover
2721
after_script:
28-
- codecov
29-
- python -m unittest discover
30-
- coverage run tests/test_unit.py
31-
notifications:
32-
hipchat:
33-
rooms:
34-
secure: HJMoEh7l01B8tqQcdp4c4Og2lFY2QCAPnt++a4InM1zF+pbQuALQvS50ILJPc7qoBskqfvXhX9t+coSaKVIMPFuXlHC9haYCBxv0TSTA/j/9SnDGwS70U2YWDIi20/YZrPSN874woL6F/D8/vB+IwYxJWIL+ofasXPm/v+QHKLjEKLggyK8SHsU2BPH++0JluelpnaBt6JcCCY6IL8wu/Bf6ohFHf67cwITPzA33Wmla51W5zHSlaVsqKM+UhK5EWCCvU51t/imfL8cf8h7zNxveqGbaq5Fqk7lBEmHtYdUm0P5RdsHHFiyWvf3Kk8kYBkA4VaSqSdV10g/Q2sURW0F4s6ULJqRBtTIcQFKgUcrkBM22+/I8MrfRkVOUrrlPugOeshtuac3xN0tQBZYc1yIik914NeL1im/doZ5MjsNlQckmF8tmwz9uPMpQBWHRGQwc72EiJ3ANfogMhZhI3GIKQffHP8aO+JTCyzzxQ1fUerF4/YgsciAZdbBRVKmYdElvix6vVxS1QyPEjr3AHzhCFso78vRla7yAXoI2RrzbsnoPo/TBsof4sqbtgPgGWSBPJiZOPh3WNZ5NSUjlefk1PyYsdqM+Ywhk8SApo8eKrDK2ghiKmqSB3yDIs4WJN91CJnhUgt8fl5Q2Iz1pCm/999ma+y/VXOqURudE5wg=
35-
template:
36-
- '<a href="https://travis-ci.org/%{repository}/builds/%{build_id}">%{repository}
37-
Build %{build_number}</a> on branch <i>%{branch}</i> by %{author}: <strong>%{message}</strong>
38-
<a href="https://github.com/sendgrid/%{repository}/commits/%{commit}">View on
39-
GitHub</a>'
40-
format: html
22+
- codecov
23+
- make test
24+
- coverage run tests/test_unit.py
4125
after_success:
42-
- codecov
43-
env:
44-
global:
45-
- secure: 7j0Ox9ZQss0PewrhGih86Ro0pQJpv23Bb0uABJV7kKN/W37ofrG0m6joamf8EhDDleaPoIqfbARhUpAlqFZF0Uo/5rREqpKkmP4e1zuYMu20VbFv6PXwZ+7ByAuKXN2/Xs54MImlL1+RaduMPNRpbcfT1mdqJgSC+3tVcWodzuRG9RPzxtWYLe93QfwNHV/VMsDPDIY12FZTErbXd/hBCEQXep5rNfK+TtLIGn0ZnS7TktTcD0ld+0ruhunbDjnkpXPVSJDuLaGRpotq0oyaGifnjVM5gVubP+KCL3h24tIXjJ7uI36Eu3EuF4qsg0fmNjuM/WjgwZ9Ta4I2MHlXtFs//qMMArOw5AvPg25adrEwGO4Veh3I3tJGL7hJeM7AZX4rAycXiGIHvpP2G/nX6e/EqRrnFBDOStmBhxEaknLJ/p2Cv6AOvxTMKDo8y+tJY1jp3H1iwCBYyW6KuFKVPDYtu8VLxJunaqNX4LxiJN7VHgvTSgqImjzEy5tVxVt079ciyeznSKKGHLHDAl1ioQpmv/Oyas007A4PKJJAf73go8Yt+GM6qe3K6U3tIBKWL8e0cK1kejk9TLC0D9KXbmhmK81QzpBdQfkrveYi/kucVv0zdrGl+Uy8zcq+vYxceyCdDYcTxCS66bWNFTD2t1dML5gRpdNVVSc27ZM9wtA=
46-
- secure: NlSZq/v2vjPQSSjlAbrM1JAfCdBSF/OqmO1HV/7U8HAmyGj7WjAcBkH5qWb5lP/xgUSzP3rEtNBJQNNHHiHHxSY0TtplUkJHrBqZOWGd4nG4GB/w8thj4nOiuok9lQhU2wi4mhRnzw2gGG9XpRpnYqL3a0CWWZ8XilSdL3M1H4fE2rwCSbKo35wpaapAT2BkN/zXeJ62wYX0vsz14EAzRSPlX+zfSo4esjig/B4ubgD1KKq3vRWGX0oU1/b6LYxrRl+OPqql9s3nKa0SuHtzLH4CVM0JTpJ8PxYq/LaLn03evAtgjR3aJJUlXaYL+yVBdATGrtyGUAJTVvRtbWsiaW4KNs+e5eWD+KM1ei18DYHWTMsjRbKLh3DrnUxFSFezMkOgUX4I9aohqPW9q9eTbSi2nR2mEcfDrGPArTZKtmGvx09gil5BAvsYc9A2Ob+TdV0N/bHROdK1R381mY4xWYytZ070+J4YHIKi/AwEJXtYgedc/PDr6fxh9RKDXNybyP2y/i+b72bnij9ZyJc0scDAlRQ4MU/h4cFDohI9quIYpJZ3N3eUeVp7TNX4AT2z+aNj74pBy15eMJv8WYhuBauk3jexhpMQi5yDr7aqlb2/NRyd91oP5QZOcjo7nnPcJp8QyvKtWFeID+c5dV3wcIMeOXmPz1KWWGlJMrV1vZI=
26+
- codecov
4727
deploy:
4828
provider: pypi
49-
user: thinkingserious
50-
password:
51-
secure: LICjgQDHDZUYFbhrxd/4KGlamfMPMu7Oqf7DCskfJwQqvZTrC7VyvOsPqVtCIIpw/GyE606KagkTEV7nTvwxCWGDQpQ0gkLkUkDzxziJlwKJEjYA3rGzxHCqdGRF6mQLThIpaUwaIpM7Ue4LUyhMSNw7b84F/dg1gWzK+LuqzY6UIRUmu6O2XvwoCWnbmrDrqExgOB7oyBABqlhmISr5x8JeMH+HRSTaHQW0QWeckEYUBPlSdXa4lj1pMfaRIlU3r7vB0Tckh5wtgu/B0t5I7enrdYHxaqIVCsh65c/8pDxXpI7anRCrPFU3SEGbodfe6rtNY4WlhWKaTJIPpQbKFU/NyYIjbox6rhdJ/bbC7hMfAxqTWzp1urJQxdWd5cbDUwNWgukdP5KhWA+iqy35llfb2KlFG6AVKHy4iR93is8hGW2NwCsSlx18W82AqpARJA22TWEIbKbyy6+GoiiIEmXxWleqriTqLuTLpPjyAby4pcW5gqtjVzEJ7Gi+Eq+Ex0pMUdOpXIt3kIk8TAB2chlGWr7+j9GuDN89LY0brSM+Q0fP8X3gohVQI5Afl8A+5ygQW5l//y2dakZ0KLSj6JjSyWMWMahrPHpxdUeNKjfENscU00AJSrskoAJvU1N4oyLIABrA7oMG5ZJXpASsixBimypayCCPJe50p+tEWW4=
29+
user: __token__
30+
password: $PYPI_TOKEN
31+
skip_cleanup: true
5232
on:
5333
branch: master
5434
condition: "$TRAVIS_TEST_RESULT = 0"
5535
tags: true
36+
python: '3.6'
37+
38+
notifications:
39+
slack:
40+
if: branch = master
41+
on_pull_requests: false
42+
on_success: never
43+
on_failure: change
44+
rooms:
45+
- secure: nlMB50M0ay7TeG9pf4IKLUXTfaw6dRS14DMa59l3dAy20bLgg4QSuxl/8lsO3tdBzTjONlpzX5NCR184WO98Kf6dJuYGp5OzfaV2DYYMu12ksbt6bSWyPiYxg3FtKlgWowJs1nRytXz6QoaumZjtoPxfJptq+bUKeZu+4sRT6NButyuUHHAwlOinjZF2UtENoi0zxia+v8EHdEgSJq1HEBmZ+4X/ZUerZndYXM5Lxfy+NHvFCxu/2/D4oQcu92Wfp+/Z1lWNeemspd+XJ5ZVNmB+kJvF8A0O+AFFlGyT8nSimfqyJoxWDT0rQm9u6MtWJol1Jso7iSe0J00fVmgdEFQMLmdcMChAGcGFzFem6C9cMA6xOfDeXS1DosHCObItVrU+YtQYPHzDN2Ubpr1T495+kvdGHVgcYy3UmOFb8Vc0NbQ7nabtlBAlLR2QcouusJmGyjTt7hDrZz6XynKgTZ4vEq7/x3aRgcYD9Oei5fZ2enjzbX3c2Jv7vrzhwAsNp0N+FNx6Nnl1v+UzQtS8XyUCOLK+LYbq+cYKaToowHNWkZM9+0pcdX8DwAHB05aiIBfE18JbjdY0bz1P+4+hmStCUPIjEKyjEPBIuXKMsYCjr092HrJkSMhGWUwJFX+R5hmACm+cQQFDjXXrpzpnXr2xHgbRbb0tX73nchF25kY=

CHANGELOG.md

Lines changed: 72 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,77 @@ All notable changes to this project will be documented in this file.
33

44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
[2020-04-01] Version 3.2.7
7+
--------------------------
8+
**Library - Fix**
9+
- [PR #128](https://github.com/sendgrid/python-http-client/pull/128): Remove ResourceWarning on module import. Thanks to [@connesy](https://github.com/connesy)!
10+
11+
12+
[2020-03-04] Version 3.2.6
13+
--------------------------
14+
**Library - Chore**
15+
- [PR #140](https://github.com/sendgrid/python-http-client/pull/140): add Python 3.8 to Travis. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
16+
17+
18+
[2020-02-19] Version 3.2.5
19+
--------------------------
20+
**Library - Fix**
21+
- [PR #132](https://github.com/sendgrid/python-http-client/pull/132): Exclude tests directory from package data. Thanks to [@bwind](https://github.com/bwind)!
22+
23+
24+
[2020-01-23] Version 3.2.4
25+
--------------------------
26+
**Library - Fix**
27+
- [PR #138](https://github.com/sendgrid/python-http-client/pull/138): update pypi token to use environment variable. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
28+
29+
30+
[2020-01-22] Version 3.2.3
31+
--------------------------
32+
**Library - Fix**
33+
- [PR #137](https://github.com/sendgrid/python-http-client/pull/137): add skip cleanup. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
34+
35+
36+
[2020-01-22] Version 3.2.2
37+
--------------------------
38+
**Library - Docs**
39+
- [PR #136](https://github.com/sendgrid/python-http-client/pull/136): baseline all the templated markdown docs. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
40+
41+
**Library - Fix**
42+
- [PR #135](https://github.com/sendgrid/python-http-client/pull/135): version number to match most recently released. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
43+
44+
**Library - Chore**
45+
- [PR #134](https://github.com/sendgrid/python-http-client/pull/134): prep the repo for automated releasing. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
46+
47+
48+
[2019-09-12] Version 3.2.1
49+
---------------------------
50+
51+
[2019-09-11] Version 3.2.0
52+
---------------------------
53+
54+
### Added
55+
- [PR #91](https://github.com/sendgrid/python-http-client/pull/91): Add support for Python 3.7. Thanks, [Hugo van Kemenade](https://github.com/hugovk)!
56+
- [PR #96](https://github.com/sendgrid/python-http-client/pull/96): Create a use cases directory. Thanks, [
57+
Nathan Seebarran](https://github.com/nathan78906)!
58+
- [PR #90](https://github.com/sendgrid/python-http-client/pull/90): Drop support for EOL Python. Thanks, [Hugo van Kemenade](https://github.com/hugovk)!
59+
- [PR #93](https://github.com/sendgrid/python-http-client/pull/93): Converted README and version as file. Thanks, [Nikita Titov](https://github.com/StrikerRUS)!
60+
- [PR #104](https://github.com/sendgrid/python-http-client/pull/104): Add first-timers.md file for newcomers. Thanks, [Ely Alamillo](https://github.com/ely-alamillo)!
61+
- [PR #107](https://github.com/sendgrid/python-http-client/pull/107): Update CONTRIBUTING - contribution guideline to branch off development. Thanks, [Alex](https://github.com/myzeprog)!
62+
- [PR #115](https://github.com/sendgrid/python-http-client/pull/115): Updated Readme with career listing. Thanks, [Pratham Sharma](https://github.com/prathamsharma92)!
63+
- [PR #112](https://github.com/sendgrid/python-http-client/pull/112): Bash script to auto-generate release notes. Thanks, [Shivansh Saini](https://github.com/shivanshs9)!
64+
- [PR #102](https://github.com/sendgrid/python-http-client/pull/102): Initial travis config for pypi deployment. Thanks, [George Kussumoto](https://github.com/georgeyk)!
65+
- [PR #119](https://github.com/sendgrid/python-http-client/pull/119): Auto deploy credentials.
66+
- [PR #88](https://github.com/sendgrid/python-http-client/pull/88): Client refactor. Thanks, [Slam](https://github.com/3lnc)!
67+
- [PR #122](https://github.com/sendgrid/python-http-client/pull/122): Let test_datarange show only a warning instead of fail on AssertionError. Thanks, [Lumír 'Frenzy' Balhar](https://github.com/frenzymadness)!
68+
69+
### Fixed
70+
- [PR #89](https://github.com/sendgrid/python-http-client/pull/89): Add missing Travis-CI python 3.6 support. Thanks, [Eugene Duboviy](https://github.com/duboviy)!
71+
- [PR #105](https://github.com/sendgrid/python-http-client/pull/105): Add missed Python 3.7 classifier. Thanks, [Nikita Titov](https://github.com/StrikerRUS)!
72+
- [PR #111](https://github.com/sendgrid/python-http-client/pull/111): String Formatting and PEP-8 fixes. Thanks, [Mohammed Rishad](https://github.com/vkmrishad)!
73+
- [PR #118](https://github.com/sendgrid/python-http-client/pull/118): Remove dead code in profile.py. Thanks, [gy741](https://github.com/gy741)!
74+
- [PR #100](https://github.com/sendgrid/python-http-client/pull/100): Conformance to style standards. Thanks, [Moises Meirelles](https://github.com/mosesmeirelles)!
75+
- [PR #120](https://github.com/sendgrid/python-http-client/pull/120): Fix a year in LICENSE.txt file to fix test__daterange. Thanks, [Lumír 'Frenzy' Balhar](https://github.com/frenzymadness)!
76+
677
## [3.1.0] - 2018-05-23
778
### Added
879
- [Update register.py to use pypandoc](https://github.com/sendgrid/python-http-client/commit/6a3a63e2511b3df9c9ef23eebd5bcd80ad8821ae)
@@ -113,4 +184,4 @@ This project adheres to [Semantic Versioning](http://semver.org/).
113184

114185
## [1.0.0] - 2016-02-25
115186
### Added
116-
- We are live!
187+
- We are live!

CODE_OF_CONDUCT.md

Lines changed: 57 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,73 @@
1-
# SendGrid Community Code of Conduct
1+
# Contributor Covenant Code of Conduct
22

3-
The SendGrid open source community is made up of members from around the globe with a diverse set of skills, personalities, and experiences. It is through these differences that our community experiences successes and continued growth. When you're working with members of the community, we encourage you to follow these guidelines, which help steer our interactions and strive to maintain a positive, successful and growing community.
3+
## Our Pledge
44

5-
### Be Open
6-
Members of the community are open to collaboration, whether it's on pull requests, code reviews, approvals, issues or otherwise. We're receptive to constructive comments and criticism, as the experiences and skill sets of all members contribute to the whole of our efforts. We're accepting of all who wish to take part in our activities, fostering an environment where anyone can participate, and everyone can make a difference.
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, sex characteristics, gender identity and expression,
9+
level of experience, education, socio-economic status, nationality, personal
10+
appearance, race, religion, or sexual identity and orientation.
711

8-
### Be Considerate
9-
Members of the community are considerate of their peers, which include other contributors and users of SendGrid. We're thoughtful when addressing the efforts of others, keeping in mind that often the labor was completed with the intent of the good of the community. We're attentive in our communications, whether in person or online, and we're tactful when approaching differing views.
12+
## Our Standards
1013

11-
### Be Respectful
12-
Members of the community are respectful. We're respectful of others, their positions, their skills, their commitments, and their efforts. We're respectful of the volunteer efforts that permeate the SendGrid community. We're respectful of the processes outlined in the community, and we work within them. When we disagree, we are courteous in raising our issues. Overall, we're good with each other. We contribute to this community not because we have to, but because we want to. If we remember that, these guidelines will come naturally.
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
1316

14-
## Additional Guidance
17+
- Using welcoming and inclusive language
18+
- Being respectful of differing viewpoints and experiences
19+
- Gracefully accepting constructive criticism
20+
- Focusing on what is best for the community
21+
- Showing empathy towards other community members
1522

16-
### Disclose Potential Conflicts of Interest
17-
Community discussions often involve interested parties. We expect participants to be aware when they are conflicted due to employment or other projects they are involved in and disclose those interests to other project members. When in doubt, over-disclose. Perceived conflicts of interest are important to address so that the community’s decisions are credible even when unpopular, difficult or favorable to the interests of one group over another.
23+
Examples of unacceptable behavior by participants include:
1824

19-
### Interpretation
20-
This Code is not exhaustive or complete. It is not a rulebook; it serves to distill our common understanding of a collaborative, shared environment and goals. We expect it to be followed in spirit as much as in the letter. When in doubt, try to abide by [SendGrid’s cultural values](https://sendgrid.com/blog/employee-engagement-the-4h-way) defined by our “4H’s”: Happy, Hungry, Humble and Honest.
25+
- The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
- Trolling, insulting/derogatory comments, and personal or political attacks
28+
- Public or private harassment
29+
- Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
- Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
2133

22-
### Enforcement
23-
Most members of the SendGrid community always comply with this Code, not because of the existence of this Code, but because they have long experience participating in open source communities where the conduct described above is normal and expected. However, failure to observe this Code may be grounds for suspension, reporting the user for abuse or changing permissions for outside contributors.
34+
## Our Responsibilities
2435

25-
## If you have concerns about someone’s conduct
26-
**Initiate Direct Contact** - It is always appropriate to email a community member (if contact information is available), mention that you think their behavior was out of line, and (if necessary) point them to this Code.
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
2739

28-
**Discuss Publicly** - Discussing publicly is always acceptable. Note, though, that approaching the person directly may be better, as it tends to make them less defensive, and it respects the time of other community members, so you probably want to try direct contact first.
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
2945

30-
**Contact the Moderators** - You can reach the SendGrid moderators by emailing [email protected].
46+
## Scope
3147

32-
## Submission to SendGrid Repositories
33-
Finally, just a reminder, changes to the SendGrid repositories will only be accepted upon completion of the [SendGrid Contributor Agreement](https://cla.sendgrid.com).
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at [email protected]. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
3467

3568
## Attribution
3669

37-
SendGrid thanks the following, on which it draws for content and inspiration:
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
3872

39-
* [Python Community Code of Conduct](https://www.python.org/psf/codeofconduct/)
40-
* [Open Source Initiative General Code of Conduct](https://opensource.org/codeofconduct)
41-
* [Apache Code of Conduct](https://www.apache.org/foundation/policies/conduct.html)
73+
[homepage]: https://www.contributor-covenant.org

0 commit comments

Comments
 (0)