Skip to content

Commit 01f58ba

Browse files
committed
Update version etc
1 parent e77dc00 commit 01f58ba

File tree

10 files changed

+17
-14
lines changed

10 files changed

+17
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ A Python framework to build Slack apps in a flash with the latest platform featu
88
python -m venv env
99
source env/bin/activate
1010
pip install -U pip
11-
pip install slackclient==2.7.0
12-
pip install -i https://test.pypi.org/simple/ slack_bolt==0.1.1
11+
pip install -U slackclient
12+
pip install -U -i https://test.pypi.org/simple/ slack_bolt
1313
```
1414

1515
## First Bolt App

maintainers_guide.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ python -m venv env
66
source env/bin/activate
77
pip install --upgrade pip
88
pip install twine wheel
9-
rm -rf dist/
9+
rm -rf dist/ build/
1010
python setup.py sdist bdist_wheel
1111
twine check dist/*
1212
1313
# Deploy to test repository
1414
twine upload --repository testpypi dist/*
15-
pip install --index-url https://test.pypi.org/simple/ slack_bolt
15+
# Test installation
16+
pip install -U slackclient
17+
pip install -U --index-url https://test.pypi.org/simple/ slack_bolt
1618
```

samples/app.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ------------------------------------------------
2-
# instead of slack_bolt==0.1.0 in requirements.txt
2+
# instead of slack_bolt in requirements.txt
33
import sys
44

55
sys.path.insert(1, "../src")
@@ -122,7 +122,8 @@ def new_message(ack, logger, payload, say):
122122
if __name__ == '__main__':
123123
app.start(3000)
124124

125-
# pip install -r requirements.txt
125+
# pip install slackclient
126+
# pip install -i https://test.pypi.org/simple/ slack_bolt
126127
# export SLACK_SIGNING_SECRET=***
127128
# export SLACK_BOT_TOKEN=xoxb-***
128-
# python app.python
129+
# python app.py

samples/aws_lambda/aws_lambda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ------------------------------------------------
2-
# instead of slack_bolt==0.1.0 in requirements.txt
2+
# instead of slack_bolt in requirements.txt
33
import sys
44

55
sys.path.insert(1, "src")

samples/falcon/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ------------------------------------------------
2-
# instead of slack_bolt==0.1.0 in requirements.txt
2+
# instead of slack_bolt in requirements.txt
33
import sys
44

55
sys.path.insert(1, "../../src")

samples/fastapi/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ------------------------------------------------
2-
# instead of slack_bolt==0.1.0 in requirements.txt
2+
# instead of slack_bolt in requirements.txt
33
import sys
44

55
sys.path.insert(1, "../../src")

samples/flask/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ------------------------------------------------
2-
# instead of slack_bolt==0.1.0 in requirements.txt
2+
# instead of slack_bolt in requirements.txt
33
import sys
44

55
sys.path.insert(1, "../../src")

samples/pyramid/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ------------------------------------------------
2-
# instead of slack_bolt==0.1.0 in requirements.txt
2+
# instead of slack_bolt in requirements.txt
33
import sys
44

55
sys.path.insert(1, "../../src")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
setup_requires=["pytest-runner==5.2"],
2626
tests_require=["pytest==3.8.2"],
2727
install_requires=[
28-
"slackclient==2.7.0", # TODO: will be replaced with slack_sdk==3.0.0
28+
"slackclient==2.7.1", # TODO: will be replaced with slack_sdk==3.0.0
2929
],
3030
# used only under src/slack_bolt/adapter
3131
extra_requires=[

src/slack_bolt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.1"
1+
__version__ = "0.1.0a1"

0 commit comments

Comments
 (0)