Skip to content

Commit c9b35ac

Browse files
committed
Merge branch 'v3' into main
2 parents 4e45242 + 39411bd commit c9b35ac

File tree

298 files changed

+50430
-14769
lines changed

Some content is hidden

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

298 files changed

+50430
-14769
lines changed

.coveragerc

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

.deepsource.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ exclude_patterns = [
1212
"setup.py",
1313
"docs/**",
1414
"docs-src/**",
15+
"docs-v3/**",
16+
"docs-src-v3/**",
1517
"tutorial/**",
18+
"slack/**",
19+
"slack_sdk/web/async_client.py",
20+
"slack_sdk/web/legacy_client.py",
1621
"tests/**",
1722
"integration_tests/**"
1823
]

.github/ISSUE_TEMPLATE/02_enhancement.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ assignees: ""
1010

1111
### Category (place an `x` in each of the `[ ]`)
1212

13-
- [ ] **slack.web.WebClient** (Web API client)
14-
- [ ] **slack.webhook.WebhookClient** (Incoming Webhook, response_url sender)
15-
- [ ] **slack.web.classes** (UI component builders)
16-
- [ ] **slack.rtm.RTMClient** (RTM client)
13+
- [ ] **slack_sdk.web.WebClient** (Web API client)
14+
- [ ] **slack_sdk.webhook.WebhookClient** (Incoming Webhook, response_url sender)
15+
- [ ] **slack_sdk.models** (UI component builders)
16+
- [ ] **slack_sdk.oauth** (OAuth Flow Utilities)
17+
- [ ] **slack_sdk.rtm.RTMClient** (RTM client)
18+
- [ ] **slack_sdk.signature** (Request Signature Verifier)
1719

1820
### Requirements
1921

.github/ISSUE_TEMPLATE/03_document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ assignees: ""
1010

1111
### The page URLs
1212

13-
- https://slack.dev/python-slackclient/
13+
- https://slack.dev/python-slack-sdk/
1414

1515
### Requirements
1616

.github/pull_request_template.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44

55
### Category (place an `x` in each of the `[ ]`)
66

7-
- [ ] **slack.web.WebClient** (Web API client)
8-
- [ ] **slack.webhook.WebhookClient** (Incoming Webhook, response_url sender)
9-
- [ ] **slack.web.classes** (UI component builders)
10-
- [ ] **slack.rtm.RTMClient** (RTM client)
11-
- [ ] Documents
12-
- [ ] Others
7+
- [ ] **slack_sdk.web.WebClient** (Web API client)
8+
- [ ] **slack_sdk.webhook.WebhookClient** (Incoming Webhook, response_url sender)
9+
- [ ] **slack_sdk.models** (UI component builders)
10+
- [ ] **slack_sdk.oauth** (OAuth Flow Utilities)
11+
- [ ] **slack_sdk.rtm.RTMClient** (RTM client)
12+
- [ ] **slack_sdk.signature** (Request Signature Verifier)
13+
- [ ] `/docs-src` (Documents, have you run `./docs.sh`?)
14+
- [ ] `/docs-src-v2` (Documents, have you run `./docs-v2.sh`?)
1315

1416
## Requirements (place an `x` in each `[ ]`)
1517

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ build/
33
dist/
44
docs/_sources/
55
docs/.doctrees
6+
docs-v2/_sources/
7+
docs-v2/.doctrees
68
.eggs/
79
*.egg-info/
810
*.egg

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ python:
66
- "3.8"
77
install:
88
- python setup.py install
9+
- pip install -e ".[testing]"
910
script:
11+
- pip install "aiohttp>=3,<4"
1012
- travis_retry python setup.py validate
1113
# TODO: Enable this
1214
# - if git status --porcelain | grep .; then git --no-pager diff; exit 1; fi

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include README.md LICENSE slack/py.typed
1+
include README.md LICENSE slack/py.typed slack_sdk/py.typed

0 commit comments

Comments
 (0)