Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2bd3eb3

Browse files
authored
Merge pull request #1 from twilio/main
Keeping up
2 parents 93cf463 + 1046b08 commit 2bd3eb3

File tree

1,070 files changed

+106337
-31499
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,070 files changed

+106337
-31499
lines changed

.deepsource.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version = 1
2+
3+
exclude_patterns = [
4+
'examples/**',
5+
6+
# auto-generated files
7+
'twilio/rest/**',
8+
'twilio/twiml/**',
9+
'tests/integration/**',
10+
11+
# compat files
12+
'twilio/compat.py',
13+
]
14+
15+
test_patterns = [
16+
'tests/**'
17+
]
18+
19+
[[analyzers]]
20+
name = "python"
21+
enabled = true
22+
23+
[analyzers.meta]
24+
max_line_length = 100
25+
skip_doc_coverage = ["module", "magic", "class"]

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ pip-log.txt
2323

2424
.DS_Store
2525

26-
docs/
26+
# sphinx build and rst folder
27+
docs/_build
28+
docs/source/_rst
2729

2830
# PyCharm/IntelliJ
2931
.idea

.travis.yml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,40 @@
1+
dist: xenial # required for Python >= 3.7
12
language: python
23
python:
34
- "2.7"
4-
- "3.3"
55
- "3.4"
66
- "3.5"
77
- "3.6"
8+
- "3.7"
9+
- "3.8"
10+
services:
11+
- docker
812
install:
913
- pip install virtualenv --upgrade
1014
- make install
1115
- make test-install
1216
script:
1317
- make test
18+
deploy:
19+
- provider: script
20+
script: make docker-build && make docker-push
21+
skip_cleanup: true
22+
on:
23+
tags: true
24+
python: "3.6"
25+
- provider: pypi
26+
skip_cleanup: true
27+
user: "__token__"
28+
password: $PYPI_TOKEN
29+
on:
30+
tags: true
31+
python: "3.6"
32+
33+
notifications:
34+
slack:
35+
if: branch = main
36+
on_pull_requests: false
37+
on_success: never
38+
on_failure: change
39+
rooms:
40+
- secure: hH8HAepfg60pch6GZ/GprMDpcyu7IjXS4eD+lIcG6TIhEIdn0YCO5K1GiFlDtWgiFfnk5tY5Wr40CEv66cJLg2DnI/q7l3O3wDof80mrbX18EOZ4cFg9ZgAAfSij4znbzf4/9ZQvLxA826Nx/yk9D33o1UE6nHF2xVMfb4bRptw=

AUTHORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ We'd like to thank the following people who have contributed to the
3838
- Evan Cooke
3939
- tysonholub
4040
- Brodan
41+
- Kyle Jones <[email protected]>

0 commit comments

Comments
 (0)